Robert Morgan
2004-Sep-06 18:29 UTC
[Wine]Worms Armageddon: cant open Worms Armageddon folder on fake ../drive_c/Team17/Worms Armageddon
Hi, this is my first attempt at using Wine. After installing wine I tried to install Worms Armageddon with wine e:/Install/install.exe at first I got a lot of.... fixme:ntdll:FILE_GetNtStatus Converting errno 38 to STATUS_UNSUCCESSFUL around 50 lines, then the installer appeared and I installed as on windows except to c:/Team17 rather than program files. I then went looking for the WA.exe file /drive_c/Team17/Worms Armageddon but I cannot open the Worms Armageddon directory... [root@jekyll Team17]# cd Worms Armageddon -bash: cd: Worms: No such file or directory The spelling and case are correct have even cut and paste (no white space) without success.So obviously something didn't go right with the install. RH 9.0 Latest wine release. any help appreciated Bob
Diego 'Flameeyes' Pettenò
2004-Sep-06 18:50 UTC
[Wine]Worms Armageddon: cant open Worms Armageddon folder on fake ../drive_c/Team17/Worms Armageddon
Robert Morgan wrote:> [root@jekyll Team17]# cd Worms Armageddon > -bash: cd: Worms: No such file or directoryThis is not at all a wine's problem. Worms Armageddon has a space in it, so if you want to enter this directory you should use the commands cd 'Worms Armageddon' or cd Worms\ Armageddon or you can simply type 'cd Worms' (this time without quotes) and press the TAB key, bash will autocomplete to the second command I shown above. -- Diego "Flameeyes" Petten? dgp85@users.sourceforge.net - http://flameeyes.web.ctonet.it/
James Hawkins
2004-Sep-06 18:51 UTC
[Wine]Worms Armageddon: cant open Worms Armageddon folder on fake ../drive_c/Team17/Worms Armageddon
> [root@jekyll Team17]# cd Worms Armageddon > -bash: cd: Worms: No such file or directory > > The spelling and case are correct have even cut and paste (no white > space) without success.bash cant interpret the space in the name of the directory. The easiests thing to do is put quotes around the name of the directory ie cd "Worms Armageddon". On 07 Sep 2004 11:29:24 +1200, Robert Morgan <robert_@ihug.co.nz> wrote:> Hi, this is my first attempt at using Wine. > After installing wine I tried to install Worms Armageddon with > > wine e:/Install/install.exe > > at first I got a lot of.... > > fixme:ntdll:FILE_GetNtStatus Converting errno 38 to STATUS_UNSUCCESSFUL > > around 50 lines, then the installer appeared and I installed as on > windows except to c:/Team17 rather than program files. I then went > looking for the WA.exe file /drive_c/Team17/Worms Armageddon but I > cannot open the Worms Armageddon directory... > > [root@jekyll Team17]# cd Worms Armageddon > -bash: cd: Worms: No such file or directory > > The spelling and case are correct have even cut and paste (no white > space) without success.So obviously something didn't go right with the > install. > > RH 9.0 > Latest wine release. > > any help appreciated > > Bob > > _______________________________________________ > wine-users mailing list > wine-users@winehq.org > http://www.winehq.org/mailman/listinfo/wine-users >-- James Hawkins
Matt Bailey
2004-Sep-06 19:17 UTC
[Wine]Worms Armageddon: cant open Worms Armageddon folder on fake../drive_c/Team17/Worms Armageddon
Ugh, spaces in directory names.......it's never been a good idea. :/ Not your fault though. What is happening is the interpreter sees the space after "Worms" and therefore assumes "Worms" is the directory you're trying to get to. Couple of options here: 1) Rename "Worms Armageddon" to something sensible (i.e. no spaces). I actually don't know the syntax used to address spaces, as I use Midnight Commander (a rockin' terminal based file manager) for just about all my file managing needs. You could use MC, or any other GUI file manager to rename the directory. 2) Do " cd Worms* " (note the asterisk at the end). This tells the interpreter to apply the command to all directories consisting of "Worms" and any characters thereafter. Works fine in this application, since there's only one directory named like that here. This isn't the most elegant solution but it should get you around the problem. -Matt Bailey Robert Morgan wrote:> > Hi, this is my first attempt at using Wine. > After installing wine I tried to install Worms Armageddon with > > wine e:/Install/install.exe > > at first I got a lot of.... > > fixme:ntdll:FILE_GetNtStatus Converting errno 38 to STATUS_UNSUCCESSFUL > > around 50 lines, then the installer appeared and I installed as on > windows except to c:/Team17 rather than program files. I then went > looking for the WA.exe file /drive_c/Team17/Worms Armageddon but I > cannot open the Worms Armageddon directory... > > [root@jekyll Team17]# cd Worms Armageddon > -bash: cd: Worms: No such file or directory > > The spelling and case are correct have even cut and paste (no white > space) without success.So obviously something didn't go right with the > install. > > RH 9.0 > Latest wine release. > > any help appreciated > > Bob