Linux Startup

Software simulator of the unique Russian synthesizer
Post Reply
Bunchy
Posts: 7
Joined: Wed May 21, 2014 5:44 am

Linux Startup

Post by Bunchy »

Hi

I'm having trouble starting the ANS program in Linux. Clicking START_LINUX_X86_64
brings me to a text editor and shows the following below at bottom of this message. I've also tried to start it through the terminal with sudo START_LINUX_X86_64.....and nothing happens either.

Is there something i'm missing? Thank You for your help
Marc


#!/bin/bash

SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"

cd $DIR
./bin/pixilang_linux_x86_64 boot.pixicode
User avatar
NightRadio
Site Admin
Posts: 3941
Joined: Fri Jan 23, 2004 12:28 am
Location: Ekaterinburg. Russia
Contact:

Re: Linux Startup

Post by NightRadio »

I'm having trouble starting the ANS program in Linux. Clicking START_LINUX_X86_64
brings me to a text editor and shows the following below at bottom of this message.
It's a problem of some graphics file managers. For example, in Nautilus: https://askubuntu.com/questions/286621/ ... n-nautilus
Execution of scripts is disabled by default.

I've also tried to start it through the terminal with sudo START_LINUX_X86_64.....and nothing happens either.
Nothing at all? No any error/warning messages?
Koekepan
Posts: 262
Joined: Thu Dec 05, 2013 4:56 am

Re: Linux Startup

Post by Koekepan »

I just open an xterm, cd to the directory in question, and then do:

./START_LINUX_X86_64

Works fine then.
Bunchy
Posts: 7
Joined: Wed May 21, 2014 5:44 am

Re: Linux Startup

Post by Bunchy »

Of Course!! It now works. Thank You NightRadio
Using file manager "Files"


NightRadio wrote: Sun Mar 25, 2018 12:03 pm
I'm having trouble starting the ANS program in Linux. Clicking START_LINUX_X86_64
brings me to a text editor and shows the following below at bottom of this message.
It's a problem of some graphics file managers. For example, in Nautilus: https://askubuntu.com/questions/286621/ ... n-nautilus
Execution of scripts is disabled by default.

I've also tried to start it through the terminal with sudo START_LINUX_X86_64.....and nothing happens either.
Nothing at all? No any error/warning messages?
Post Reply