silly question

how to run a. exe file on linux? or does linux run their applications in. exe file too?.

Linux Software 434 This topic was started by ,


data/avatar/default/avatar01.webp

25 Posts
Location -
Joined 2004-10-04
how to run a .exe file on linux? or does linux run their applications in .exe file too?

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar04.webp

1678 Posts
Location -
Joined 2003-09-27
.exe files, or Windows executables, can be run with varying stages of success using Wine. There are specialized versions of it for different jobs and applications. There's regular old Wine that comes with many, if not most modern Linux distros, and has vastly improved over the last two years. There's CrossOver Wine which specializes in Windows Office apps and related Windows programs. Cedega, from Transgaming Technologies, specializes in running Windows games. Win4Lin from Netraverse, allows you to run an entire Windows operating system right from your Linux desktop.
 
Wine can be a lot of fun to play around with, trying to get Windows programs running, and can also be frustrating.
 
Just a few days ago, I got Final Draft, a screenwriting program, working almost perfectly using regular old Wine.

data/avatar/default/avatar01.webp

25 Posts
Location -
Joined 2004-10-04
OP
what is the executable file for linux?

data/avatar/default/avatar04.webp

1678 Posts
Location -
Joined 2003-09-27
Look in /usr/bin/. That's where many of the Linux executables are, or there will be links to them from /usr/bin.

data/avatar/default/avatar03.webp

134 Posts
Location -
Joined 2004-07-27
I think what Viper is confused about is file extensions. He is used to executable files on Windows carrying the .exe extension. Most executable files in windows use this extension, but they can also use .bat and others. Linux does not normally run windows .exe files, but as Dapper said, a program called wine can often run them - www.winehq.org. Also, there are comercial verisons of wine such as Codeweavers Crossover Office - which runs windows apps well, and had a nice user interface. Transgamings winex/cedega version of wine can run many windows only games uner linux.
 
Linux does not have any special executable file extension. Executible linux files may have an extension like .bin, .sh or have no extension at all. From the command line these can be run with ./nameoffile .

data/avatar/default/avatar17.webp

757 Posts
Location -
Joined 2000-10-14
I would like to add onto OldSpiceAP's info...
 

Quote:From the command line these can be run with ./nameoffile . 
the ./ signifies the current working directory. Type "pwd"<enter> and the . will be that.
 
ie: pwd = /usr/bin
./program = /usr/bin/program