Page 1 of 1

Linux Build Running Issue

Posted: Fri Jun 24, 2011 8:24 pm
by jesse
I built my application but when I try to run it on ubuntu the screen says there is no application installed for executables.
am i missing something else i need for linux deployment?

Re: Linux Build Running Issue

Posted: Fri Jun 24, 2011 11:58 pm
by Mark
Hi,

Maybe you need to chmod it:

Code: Select all

chmod 755 /path/to/standalone
There's also a properties window for files in Ubuntu, which contains some useful settings for executables (such as setting to run instead of open as file).

Best,

Mark

Re: Linux Build Running Issue

Posted: Sat Jun 25, 2011 4:02 am
by jacque
jesse wrote:I built my application but when I try to run it on ubuntu the screen says there is no application installed for executables.
am i missing something else i need for linux deployment?
Yes, you need to set its executable bit. That's done in the Properties dialog. This is a very common operation in Linux, a lot of apps you download need to be set -- including, often, LiveCode itself.

Re: Linux Build Running Issue

Posted: Sat Jun 25, 2011 8:29 pm
by jesse
Thanks that helped me very much! It works now! :)