7/21/2008

Run executable files on Linux

How to run executable files on Linux?

First, is the executable you're trying to run a Windows executable? If so it's not going to work. If it's a Linux executable file you should be able to run it by opening a shell, navigating to the executable's directory and running "./[executable name]". If that doesn't work you may want to check to see if the executable is indeed executable. Type ls -l on the command line and see if permissions on the file are something like r-x. If not you need to make the file executable by running chmod 544 [executable name]. I hope this helps.

0 comments: