Quote Originally Posted by chronozphere
Hey guys,

I'm trying to compile my engine on linux. Building goes without any problems, but when I try to run it, i get:

The launching application ""/mnt/dev/n3d/workingdir/demos/mesh_test_fpc/meshtestproj""
does not exist or is not executable.

See Run > Run Parameters > Local
This could just be a file permissions issue. Certainly when ever I've compiled stuff on linux (admittedly, not with Lazarus), it hasn't been executable immediately. I've always had to give it the X permission with something like:-

Code:
chmod ugo=rwx myfile
This gives myfile read, write and execute permissions for the owning user, the owning group and the public.

I'm not going to try and explain all the options of chmod, instead, check out this page.