Quote:
Originally Posted by zspider
i guess not coz you can't run .exe files like server files on linux
|
actually you CAN run a EO server on a linux box, and you can run EXE's on a linux box as well, please do research before you post.
Quote:
From the command prompt type /path/to/executable/name_of_prog.
If you are in the same directory as the executable then "/path/to/executable/" above equates to "./"
Check that it is executable with ls -l, you should see a string like "-rwxr-xr-x", where the three x's mean permission for the owner, group and others to execute the file.
If you're missing an x, the command chmod ugo+x will give all the above permission.
|