WoW on Ubuntu--help!

Nov 12, 2007 21:15

So I manage to install Wine, but now I'm at the point in the World of Warcraft installation where I need to use the command ( Read more... )

ubuntu, world of warcraft, help

Leave a comment

theweaselking November 13 2007, 03:00:41 UTC
Two different lines.

cd /home/panda/desktop/wow_install [enter]
wine installer.exe [enter]

The first command moves you into the WoW directory.
The second command starts wine, targetting the installer.

If you wanted them on one line, it would be
cd /home/panda/desktop/wow_install && wine installer.exe
which means "run command #1, then command #2" and lets you do it in just one command.

Reply

gothpanda November 13 2007, 03:34:18 UTC
I tried that, it still didn't recognize it, but I'll try again...

Reply

gothpanda November 13 2007, 03:36:07 UTC
Nope, still doesn't find the directory. I even copied and pasted. :(

Reply

theweaselking November 13 2007, 03:45:05 UTC
It's case sensitive - doesn't Desktop have a capital D in ubuntu?

If that doesn't help immediately, try this. Type "cd /home/panda". Your prompt should change to have a little "~" in it.

Type "ls". Press Enter. You're looking for either "Desktop" or "desktop".

If it's lowercase, type "cd desktop" and press enter. If it's uppercase, type "cd Desktop" and press enter. Your prompt should now say "~/Desktop"

Type "ls" and press Enter again. You're looking, this time, for the WoW installation directory. Type "cd [DIRECTORY]" - and it has to be exactly right, case is sensitive. Then press Enter.

Finally, type "wine installer.exe" and press enter.

As a handy tip: at any time, you can type *part* of a directory name, hit Tab, and it will try to fill in the rest of the name. If it does nothing, that means there's either no possibilities or many possibilities. Press Tab again and it will show you all the possibilities, and you can fill in more of the name until you've removed all ambiguity. Try it out, it's very neat.

Reply

gothpanda November 13 2007, 14:10:06 UTC
Ah, I think that might be the problem. I will try again tonight with a capital D in desktop. Thanks! I'll let you know how it goes...

Reply

theweaselking November 13 2007, 03:49:27 UTC
I checked, Desktop is capitalised. Try "cd /home/panda/Desktop/wow_install"

And if wow_install has any capital letters in it on your Desktop, use that instead.

Reply

anivair November 13 2007, 13:26:01 UTC
beat me to it.
wine /home/panda/Desktop/wow_install/Installer.exe

(or whatever you've got)

Another good way to do that is to right click it on hte desktop (or wherever) and open it with wine. For ease you can cd one directory at a time and then use the 'ls' command to see what things look like (so you can start in /home/panda. When you enter 'ls' one of the results will be Desktop, which you can then copy and paste or type as is,. for example)

Reply

tosk November 13 2007, 13:37:31 UTC
Yep, or
cd /home/panda/Desktop/wow_install/; wine Installer.exe

Reply

gothpanda November 13 2007, 14:12:18 UTC
Thanks guys. I will try all these suggestions until one works...

Reply

&& rfunk November 13 2007, 14:22:24 UTC
If you wanted them on one line, it would be
cd /home/panda/desktop/wow_install && wine installer.exe
which means "run command #1, then command #2" and lets you do it in just one command.

Well... the && means "run the first command, and *if* that one is successful run the second command."
To run the second command even if the first one fails, use a semicolon instead of &&, like tosk mentioned at some point.

Reply

Re: && theweaselking November 13 2007, 14:50:20 UTC
But we don't want to run the second command if the first one fails.

Reply

Re: && rfunk November 13 2007, 14:56:16 UTC
True, but I was just clarifying the meaning of &&.

(I wouldn't recommend doing it all on one line anyway though.)

Reply


Leave a comment

Up