What is difference between linux and windows executables
Any linux fans here? Can anyone explain what is a difference between windows and linux executable files. Seems to be obvious that windows programs are with .exe and they are recognized as executable programs. How about linux? What is a difference? Thanks.
Recent comments
- Re: Google Chrome wants to be installed on new komputers
1 year 27 weeks ago - Re: Adding links to posts !!
1 year 39 weeks ago - Re: Your favourite movie of all time??
1 year 39 weeks ago - favorite actor
1 year 39 weeks ago - Re: got an error message how to solve this
1 year 43 weeks ago - I would suggest
1 year 43 weeks ago - Installed IE7 now can't access the internet
1 year 46 weeks ago - Re: How to enable system restore
1 year 48 weeks ago - Re: How to enable system restore
1 year 48 weeks ago - Seems that Daemon tools cannot understand it
1 year 50 weeks ago

lol, the difference is that they are completely different in every way (except that they are compiled code)
the main difference is that windows works by file extension and association, eg a .exe is an executable file, and a .txt is a text file
linux works by file permissions, so if i make a file called runme.txt and then edit its permissions so that anyone can read it and anyone can write it, and anyone can execute it (chmod 777 runme.txt) then its an executable, if i change it so that noone can execute it (even if its a program) then it wont run by clicking on it =)
hope that helps a bit