wine wont run some .exe files

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
h2sammo
Level 2
Level 2
Posts: 32
Joined: Thu Apr 09, 2009 11:12 am

wine wont run some .exe files

Post by h2sammo »

i have recently tried to run the installer or the "run game" exe for perfect world international and caesar3, respectively with no success. wine wont open them nor will it display any errors.

nothing happens instead.

this is an example of code i have typed in:

Code: Select all

bobby@localhost ~ $ wine "/home/bobby/Desktop/Downloads/Perfect World International/install.exe"
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

wine wont run some .exe files

Post by austin987 »

On Mon, Jun 8, 2009 at 11:39 AM, h2sammo<[email protected]> wrote:
i have recently tried to run the installer or the "run game" exe for perfect world international and caesar3, respectively with no success.  wine wont open them nor will it display any errors.

nothing happens instead.

this is an example of code i have typed in:
[codebobby@localhost ~ $ wine "/home/bobby/Desktop/Downloads/Perfect World International/install.exe"[/code]
cd to the directory first.

--
-Austin
h2sammo
Level 2
Level 2
Posts: 32
Joined: Thu Apr 09, 2009 11:12 am

Post by h2sammo »

i am in the proper directory when i run that.

wine version 1.2.2
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

wine wont run some .exe files

Post by austin987 »

On Mon, Jun 8, 2009 at 1:18 PM, h2sammo<[email protected]> wrote:
i am in the proper directory when i run that.
Terminal output?
wine version 1.2.2
That version doesn't exist.


--
-Austin
h2sammo
Level 2
Level 2
Posts: 32
Joined: Thu Apr 09, 2009 11:12 am

Post by h2sammo »

there is no terminal output.
nothing happens, after i hit enter, the command goes through, it takes a few seconds, then the terminal goes back to

Code: Select all

 bobby@localhost ~ $
version is 1.1.22
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

wine wont run some .exe files

Post by austin987 »

On Mon, Jun 8, 2009 at 2:34 PM, h2sammo<[email protected]> wrote:
there is no terminal output.
nothing happens, after i hit enter, the command goes through, it takes a few seconds, then the terminal goes back to
Code:
 bobby@localhost ~ $
What is the exact command used to run it? Do you have wine installed? Try:
$ ls -a *.exe
$ which -a wine
$ wine --version
$ wine notepad

--
-Austin
h2sammo
Level 2
Level 2
Posts: 32
Joined: Thu Apr 09, 2009 11:12 am

Post by h2sammo »

austin,
i have pasted the exact command a few posts ago.
i have also given the wine version i am using.

the same wine application allows me to open other window native programs (ventrilo and world of warcraft come to mind) on the same machine.

i do not understand why it wont give any sign of life on the 2 applications i mentioned in my original post.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

wine wont run some .exe files

Post by austin987 »

On Mon, Jun 8, 2009 at 4:03 PM, h2sammo<[email protected]> wrote:
austin,
i have pasted the exact command a few posts ago.
i have also given the wine version i am using.

the same wine application allows me to open other window native programs (ventrilo and world of warcraft come to mind) on the same machine.

i do not understand why it wont give any sign of life on the 2 applications i mentioned in my original post.
I asked you to cd to the directory and run it there. If you did, the
terminal output of the ls commands should give a clue.

You've either got your terminal syntax wrong, or the file doesn't exist.

--
-Austin
h2sammo
Level 2
Level 2
Posts: 32
Joined: Thu Apr 09, 2009 11:12 am

Post by h2sammo »

thank you,

this worked:

Code: Select all

 bobby@localhost ~ $ cd "/home/bobby/Desktop/Downloads/Perfect World International"
bobby@localhost ~/Desktop/Downloads/Perfect World International $ wine "/home/bobby/Desktop/Downloads/Perfect World International/install.exe" 
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

wine wont run some .exe files

Post by austin987 »

On Mon, Jun 8, 2009 at 7:34 PM, h2sammo<[email protected]> wrote:
thank you,

this worked:


Code:
 bobby@localhost ~ $ cd "/home/bobby/Desktop/Downloads/Perfect World International"
bobby@localhost ~/Desktop/Downloads/Perfect World International $ wine "/home/bobby/Desktop/Downloads/Perfect World International/install.exe"
Don't use the full unix path. Just use 'wine install.exe'.


--
-Austin
Locked