Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
03-04-2008, 08:50 AM
|
#1
|
Member
Registered: Dec 2005
Posts: 76
Rep:
|
cannot get an executable to run...
This maybe totally dumb. I have copied over my executable files to a portable hard-drive and am trying to run the exectables from the hard-drive. I can make and compile the code. But does not run at all. I have chmod'd all the directories - in fact the entire drive, but even the target executable is compiled, it does not run at all. I have literally chmod's everything with 777 command but I get the following error:
bash: ./Sim: Permission denied
permissions are:
-rwxrwxrwx 1 Dave Dave 156920 2008-03-04 14:37 Sim
The directory is also of the same positions, as I performed a recurive chmod -R, any ideas why this does not work?
Thanks
|
|
|
03-04-2008, 08:55 AM
|
#2
|
LQ Addict
Registered: Jul 2002
Location: East Centra Illinois, USA
Distribution: Debian stable
Posts: 5,908
|
Are you trying to run the executable in GUI mode by clicking on it, or in command-line by typing the command to run it?
|
|
|
03-04-2008, 09:01 AM
|
#3
|
Member
Registered: Dec 2005
Posts: 76
Original Poster
Rep:
|
Just running on command line
$ ./Sim
I do this normally on the PC hard-drive - only the location is different this time...
|
|
|
03-04-2008, 11:03 AM
|
#4
|
LQ Addict
Registered: Jul 2002
Location: East Centra Illinois, USA
Distribution: Debian stable
Posts: 5,908
|
From the command line, the two main reasons for not being able to run an executable are:
1) you don't have parmission. You've set things to give you permission, so this reason doesn't apply.
2) the path to the executable is not in your PATH environment variable. To see what's in path, run echo $PATH. I'll wager that you don't see the path to the external drive and the executable on that drive.
./Sim means 'in this directory, run this command'. In order for ./Sim to work, you need to first cd to the folder on the external drive which contains the executable, then do ./Sim.
Alternatively, you can run it as '/path/to/external drive/folder/executable'.
Third alternative is to add the path to that executable to your PATH variable.
|
|
|
03-04-2008, 11:14 AM
|
#5
|
Member
Registered: Jun 2003
Location: UK
Distribution: Devuan Beowulf
Posts: 514
Rep:
|
Maybe Sim is trying to do something it shouldnt and SELinux is killing it.
|
|
|
03-04-2008, 11:18 AM
|
#6
|
LQ Sage
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,675
Rep: 
|
Probably the partition where your file is residing is mounted with noexec option.
|
|
|
All times are GMT -5. The time now is 02:47 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|