特殊:Badtitle/NS100:WorldofWarcraft:修订间差异
小无编辑摘要 |
小无编辑摘要 |
||
第7行: | 第7行: | ||
This howto is for installing and playing World of Warcraft using Wine under Ubuntu-x86. | This howto is for installing and playing World of Warcraft using Wine under Ubuntu-x86. | ||
Wine is a free open source implementation of the proprietary Win32 API, and attempts to enable Windows applications and games to run on Unix-like operating systems | Wine is a free open source implementation of the proprietary Win32 API, and attempts to enable Windows applications and games to run on Unix-like operating systems. | ||
World of Warcraft can also be played under Ubuntu by using the proprietary Cedega and CrossOver Linux. This howto, however, does not address these two. | World of Warcraft can also be played under Ubuntu by using the proprietary Cedega and CrossOver Linux. This howto, however, does not address these two. | ||
Before you begin the installation you need to run this simple command, that checks if your video card driver has proper functions enabled so it can run WoW: | |||
<pre><nowiki> | |||
glxinfo | grep rendering</nowiki></pre> | |||
Which should return a line similar to this: | |||
<pre><nowiki> | |||
direct rendering: Yes</nowiki></pre> | |||
However if this line says no to direct rendering, it means that your graphic card drivers won't be able to run WoW. Please refer to the Troubleshooting section on this page for more info. | |||
== Installing Wine == | == Installing Wine == | ||
The | The official deb package file of Wine from WineHQ's [http://www.winehq.org/site/download-deb download page], is recommended for most users, as it works almost out of the box for most people, and has a [http://appdb.winehq.org/appview.php?iVersionId=6482 gold rating] at the moment. | ||
For full instructions on installing Wine see the [[UbuntuHelp:Wine]] page. | |||
=== Deb package === | |||
To install the deb you need to add the WineHQ repository and then install Wine. For additional help on adding repositories, see the [[UbuntuHelp:Repositories]] page. | |||
* Open a terminal(also called a console, CLI, and command prompt) and choose '''one''' of | * Open a terminal(also called a console, CLI, and command prompt) and choose '''one''' of the following two commands to run, based on your version of Ubuntu: | ||
'''For Ubuntu | '''For Ubuntu Gutsy Gibbon (7.10):''' | ||
<pre><nowiki> | <pre><nowiki> | ||
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/ | sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/gutsy.list -O /etc/apt/sources.list.d/winehq.list</nowiki></pre> | ||
'''For Ubuntu | '''For Ubuntu Feisty Fawn (7.04):''' | ||
<pre><nowiki> | <pre><nowiki> | ||
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/ | sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/feisty.list -O /etc/apt/sources.list.d/winehq.list</nowiki></pre> | ||
*#2 Now do these three commands in a terminal: | *#2 Now do these three commands in a terminal: | ||
第40行: | 第48行: | ||
sudo apt-get update | sudo apt-get update | ||
sudo apt-get install wine</nowiki></pre> | sudo apt-get install wine</nowiki></pre> | ||
*#3 Before proceeding to install World of Warcraft you must run winecfg at least once (it must setup the ~/.wine directory structure before you can install Windows applications into it). This is a very important step. In a Terminal window type the following: | |||
<pre><nowiki> | |||
winecfg</nowiki></pre> | |||
Select your Windows type, configure disk and removable drives, etc, then press Apply and Ok. As it closes, winecfg will create a .wine directory structure in your home folder, populating with information about drives and devices installed in your system. If you fail to do this before trying to install World of Warcraft then you'll probably see errors like the following when running winecfg in the future: | |||
<pre><nowiki> | |||
err:winecfg:apply_drive_changes unable to define devicename of 'C:'</nowiki></pre> | |||
=== Compiling Wine from source === | |||
Other experienced users, who are unable to make this work or just want more control over the installation, may want to try to compile Wine from source in order to play WoW. Instructions can be found here: | |||
https://wiki.ubuntu.com/BuildingWineFromSource | |||
== Installing WoW == | == Installing WoW == | ||
==== Original WoW ==== | |||
* | The best method, if you have access to the installation discs is to copy the contents to your hard disk and run them from there: | ||
* Create a convenient directory ( 'wow_install' on your Desktop for example) | |||
* Copy all of the files from the first WoW CD to this new directory. | |||
* For each of the remaining WoW CD's, copy just the 'Installer Tome #.mpq' files. In the end, you should have the 'DirectX' directory, and the 'autorun.inf', 'installer.ico', 'Installer Tome.mpq', and 'Installer.exe' files from disc 1, and 'Installer Tome 2.mpq', 'Installer Tome 3.mpq', 'Installer Tome 4.mpq', and 'Installer Tome 5.mpq' from the remaining discs. Note that the 'Installer.exe' file on the first disc is different from the files of the same name on the subsequent discs; if you get the wrong on the install will fail with | |||
<pre><nowiki> | |||
Unrecognized key "options". (AttributeParser::Parse)</nowiki></pre> | |||
* Start the installation by opening a terminal and running these commands: | |||
<pre><nowiki> | <pre><nowiki> | ||
cd /<path-to-directory>/ | cd /<path-to-directory>/ | ||
wine Installer.exe</nowiki></pre> | wine Installer.exe</nowiki></pre> | ||
Replace <code><nowiki><path-to-directory/></nowiki></code> with the right path to the directory where you copied all the files | Replace <code><nowiki><path-to-directory/></nowiki></code> with the right path to the directory where you copied all the files above. | ||
'' | ''Some dialogs during installation may appear blank or garbled, and the installer may even hang for up to 5 minutes at 100% CPU, while appearing to be doing nothing. Simply wait and click next when possible.'' | ||
'' | ''Note: If you have not already done so, you may want to install [https://help.ubuntu.com/community/RestrictedFormats/Microsoft_Fonts Microsoft's proprietary fonts], because they can solve some text related graphical glitches during installation.'' | ||
''' | ==== Burning Crusade ==== | ||
The BC install is more or less the same as the base game install. | |||
* Create a new directory separate from the directory where you copied the original game discs. | |||
* Copy the 'Autorun.inf', 'Installer.exe', 'Installer.ico', and 'Installer Tome.mpq' files from the first Burning Crusade disc to this new directory. | |||
* Copy just 'Installer Tome 2.mpq', 'Installer Tome 3.mpq', and 'Installer Tome 4.mpq' from the remaining install discs. | |||
* Run the installer by opening a terminal and executing these commands: | |||
<pre><nowiki> | |||
cd /<path-to-directory>/ | |||
wine Installer.exe</nowiki></pre> | |||
Replace <code><nowiki><path-to-directory/></nowiki></code> with the right path to the directory where you copied all the files (the BC files, not the original WoW files). | |||
==== Alternate Installation Methods ==== | |||
If the above isn't possible for some reason (you don't have the discs for example, or a working media drive), here's some alternate ways to install the game. | |||
===== Alternative 1 (Copy from Windows): ===== | |||
You can also just install WoW in Windows and then copy the entire World of Warcraft folder over from your Windows installation. | |||
===== Alternative 2 (Download the Entire Game): ===== | |||
If you have lost a CD, do not have access to a CD drive or simply would not like to bother with patching and messing with the CD's, you can download and run the install of the trial version, which is in fact the full game almost fully patched, from the blizzard torrentlike downloader. They work very nicely with Wine. | |||
Installer Downloads: | |||
[http://www.worldofwarcraft.com/downloads/files/pc/wowclient-downloader.exe Original WoW - US Version] | |||
[https://www.worldofwarcraft.com/account/download/bc-clientdownload.html Burning Crusade - US Version] (requires a valid account for log in) | |||
[http://www.wow-europe.com/en/burningcrusade/download/ WoW - European clients, in all languages] | |||
In order to use the Blizzard Downloader effectively, you must 1) open certain ports on your computer and 2) enable port forwarding on your router. | In order to use the Blizzard Downloader effectively, you must 1) open certain ports on your computer and 2) enable port forwarding on your router. | ||
====== Firewall Configuration for Blizzard Downloader ====== | |||
The easiest way to open these ports is to use the firewall program Firestarter. | |||
* From the command line, install Firestarter with this command: <code><nowiki>sudo apt-get install firestarter</nowiki></code>. | |||
* When it is running, select the "Policy" tab, right-click in the Allow Service area, and select Add Rule. | |||
* Under port, type <code><nowiki>6112</nowiki></code> and make sure that the "Anyone" radio button is selected. Make a note in the comments field that this port relates to Blizzard. | |||
* Repeat these steps for ports <code><nowiki>3724</nowiki></code> and for the range <code><nowiki>6881-6999</nowiki></code> (which will be recognized as BitTorrent ports). | |||
====== Router Configuration for Blizzard Downloader ====== | |||
Next, configure your router to forward those ports on the router to your computer only. The steps are similar to the above, but vary slighly from router to router and may be found on Blizzard's website: [http://www.blizzard.com/support/wow/?id=aww01199p] | |||
Once the | Once the firewall is configured and the network port forwarding is working, run the downloader with (Burning Crusade US Version example): | ||
<pre><nowiki> | <pre><nowiki> | ||
wine WoW-BurningCrusade-enUS-Installer-downloader.exe</nowiki></pre> | wine WoW-BurningCrusade-enUS-Installer-downloader.exe</nowiki></pre> | ||
第84行: | 第125行: | ||
== Configuration == | == Configuration == | ||
WoW will run | === Config.wtf === | ||
WoW uses DirectX by default, but for most people it will not perform well in this mode. If this is the case for you, then you should change it to run in OpenGL mode instead. | |||
To do this you need to find the file <code><nowiki>wtf/Config.wtf</nowiki></code> in your main WoW directory. By default it is found in <code><nowiki>/home/<username>/.wine/drive_c/Program\ Files/World\ of\ Warcraft/</nowiki></code>, where <username> is you computer login name. Note that since .wine begins with a period, you will not be able to see it, but you may still access it in a terminal. In the Nautilus file manager, you can press <code><nowiki>Ctrl + h</nowiki></code> to see hidden files. If config.wtf does not exist, run the game and log into a character. The game should then create the file. Open it using a text editor, and add the following line to it: | |||
<pre><nowiki> | |||
SET gxApi "opengl"</nowiki></pre> | |||
If you experience poor performance, graphical glitches, or the game does not run at all, then add the following options as well: | |||
<pre><nowiki> | |||
SET ffxDeath "0" | |||
SET ffxGlow "0"</nowiki></pre> | |||
Note that disabling ffxGlow may also enable antialiasing for some users. | |||
If you experience stuttering, bad sound or no sound what so ever, then add the following options as well: | |||
<pre><nowiki> | <pre><nowiki> | ||
SET SoundOutputSystem "1" | SET SoundOutputSystem "1" | ||
SET SoundBufferSize "150" | SET SoundBufferSize "150"</nowiki></pre> | ||
</nowiki></pre> | |||
=== winecfg === | |||
If you experience stuttering, bad sound or no sound what so ever, then you must try a few things in <code><nowiki>winecfg</nowiki></code>. Just type <code><nowiki>winecfg</nowiki></code> in a terminal, press enter, and the wine configuration application window should appear and you should go to the <code><nowiki>audio tab</nowiki></code>. | |||
For most people <code><nowiki>OSS</nowiki></code> will work better than <code><nowiki>ALSA</nowiki></code>, so you should make sure that only <code><nowiki>OSS</nowiki></code> is ticked. But for some <code><nowiki>ALSA</nowiki></code> works better, so try that as a second solution, make sure you only have one ticked at a time. | |||
Also, refer to the Voice chat section for information on getting multiple audio streams working with <code><nowiki>OSS</nowiki></code> and <code><nowiki>ALSA</nowiki></code> (more than one program using audio at once). It will wave you grief should you ever want to listen to music and chat on Ventrilo or Teamspeak while playing, and similar. | |||
You may also try ticking <code><nowiki>Driver Emulation</nowiki></code>. Remove it again if it does not help. | |||
=== Registry configuration === | |||
This is a simple registry edit for Wine that will dramatically increase the framerate in game. It is gathered from this thread on Ubuntuforums.org: http://www.ubuntuforums.org/showthread.php?t=303509 | |||
Open a terminal window, type <code><nowiki>regedit</nowiki></code> and press enter. This will start the Wine equivalent of the windows registry editor. If you are familiar with using the registry editor under windows then this is pretty much the same. | |||
* Find this key <code><nowiki>HKEY_CURRENT_USER\Software\Wine\</nowiki></code> | * Find this key <code><nowiki>HKEY_CURRENT_USER\Software\Wine\</nowiki></code> | ||
第118行: | 第172行: | ||
* Replace <code><nowiki>New Value #1</nowiki></code> with <code><nowiki>DisabledExtensions</nowiki></code> (Notice it's case sensitive!) | * Replace <code><nowiki>New Value #1</nowiki></code> with <code><nowiki>DisabledExtensions</nowiki></code> (Notice it's case sensitive!) | ||
*# | *#7 Then double click anywhere on the line, a dialog box will open. | ||
* In the value field type <code><nowiki>GL_ARB_vertex_buffer_object</nowiki></code> | * In the value field type <code><nowiki>GL_ARB_vertex_buffer_object</nowiki></code> | ||
''Note: If you are unable to rename the newly created key "New Key #1" to "OpenGL" then expand the left hand pane of the regedit window using the vertical divider bar. You should now be able to change it. A known bug in Wine is causing this unwanted behavior.'' | ''Note: If you are unable to rename the newly created key "New Key #1" to "OpenGL" then expand the left hand pane of the regedit window using the vertical divider bar. You should now be able to change it. A known bug in Wine is causing this unwanted behavior.'' | ||
== Playing == | |||
=== | === Start from the Desktop Icon === | ||
Double click the icon you find on your Desktop titled World of Warcraft, this will start the launcher. If you have never used something requiring HTML rendering with Wine you will be prompted to download and install the Gecko rendering engine, you should do this as it will enable the WoW Launcher to display news. | |||
=== Start from the Terminal === | |||
Starting from the terminal is simple, just enter: | |||
<pre><nowiki> | <pre><nowiki> | ||
wine "C:\Program Files\World of Warcraft\Launcher.exe"</nowiki></pre> | |||
(install when prompted about the Gecko rendering engine) | |||
Or, dive right into the game with: | |||
<pre><nowiki> | <pre><nowiki> | ||
wine "C:\Program Files\World of Warcraft\WoW.exe"</nowiki></pre> | wine "C:\Program Files\World of Warcraft\WoW.exe"</nowiki></pre> | ||
=== Gnome menu icon === | === Gnome menu icon === | ||
You can make a Gnome menu entry by doing the following commands in a terminal: | You can make a Gnome menu entry for WoW by doing the following commands in a terminal: | ||
<pre><nowiki> | <pre><nowiki> | ||
wget http://kde-files.org/CONTENT/content-files/41569-wow-icon-scalable.svg | wget http://kde-files.org/CONTENT/content-files/41569-wow-icon-scalable.svg | ||
第186行: | 第217行: | ||
== Voice chat == | == Voice chat == | ||
If you choose to configure Wine to use OSS for sound, then you will experience an issue with making voice chat applications and WoW use sound input and output simultaneously. You need to be able to mix sound in order for this to work, but most modern onboard soundcards do not support hardware sound mixing. You will either have to get a PCI soundcard, which supports this feature, or use software mixing. The issue with software mixing comes down to the two different sound interface architectures available in Linux, <code><nowiki>OSS</nowiki></code> and <code><nowiki>ALSA</nowiki></code>. | |||
'''OSS'''''(old/legacy)'': | '''OSS'''''(old/legacy)'': Does not allow you to use software mixing. Meaning only ONE application will be able to use sound at a time. | ||
'''ALSA'''''(new)'': Allows software mixing. Meaning several programs can use sound simultaneously. | '''ALSA'''''(new)'': Allows software mixing. Meaning several programs can use sound simultaneously. | ||
However, the ALSA | However, as stated previously in this howto, for some people the sound may stutter or be otherwise corrupted when using ALSA, this may force you to use OSS. | ||
So you see the problem: | So you see the problem: | ||
第215行: | 第246行: | ||
Remember that both the voice chat program and WoW need to be run with the aoss command in front. | Remember that both the voice chat program and WoW need to be run with the aoss command in front. | ||
== | == Short and Simple == | ||
This | This is a simplified method of installing and configuring Wine and WoW. It is based on highly personal information, does not work for all computer configurations, does not configure Wine right, only mentions one possible way of installing WoW out of several, and does not address EU gamers. | ||
* | * Enable the binary video driver for your card. (applies to nVidia and ATI cards.) | ||
* Install [[UbuntuHelp:Wine]] from Ubuntu's Universe repository. | |||
* Run the installer from https://signup.worldofwarcraft.com/trial/10dayfreetrial.htm (or the CDs - I don't have them, so can't document.) | |||
* When you first run the game, it may ask "Download and install Gecko?" say "yes". | |||
You don't have to do these, but here are few simple tweaks to make things even better. | |||
* | * System, preferences, appearance, set visual effects to None. This also gets rid of the task bars during game play. | ||
* | * add this key to the registry: [HKEY_CURRENT_USER\Software\Wine\OpenGL] "DisabledExtensions"="GL_ARB_vertex_buffer_object" | ||
== Troubleshooting == | |||
This section has been moved to its own article for better overview and navigation. | |||
See [https://help.ubuntu.com/community/WorldofWarcraft/Troubleshooting] | |||
== Support and discussion == | == Support and discussion == | ||
For support and discussion on the subject of this howto, please post at: | For support and discussion on the subject of this howto, please post at: | ||
http:// | http://ubuntuforums.org/showthread.php?t=579378 | ||
== Related links == | == Related links == | ||
For more information regarding WoW under Wine see Wine's | For more information regarding WoW under Wine see Wine's official page on WoW at: | ||
http://appdb.winehq.org/ | http://appdb.winehq.org/objectManager.php?sClass=application&iId=1922 | ||
The howto found on www.wowwiki.com is also one of the best resources for info on this subject: | |||
http://www.wowwiki.com/Linux/Wine | |||
The Gentoo wiki also contains good information, especially for those that need more detailed info: | The Gentoo wiki also contains good information, especially for those that need more detailed info: | ||
http://gentoo-wiki.com/HOWTO_Install_and_update_World_Of_Warcraft_with_wine | http://gentoo-wiki.com/HOWTO_Install_and_update_World_Of_Warcraft_with_wine | ||
[[category:CategoryGames]] [[category:CategoryDocumentation]] [[category:CategoryCleanup]] | [[category:CategoryGames]] [[category:CategoryDocumentation]] [[category:CategoryCleanup]] | ||
[[category:UbuntuHelp]] | [[category:UbuntuHelp]] |
2007年11月21日 (三) 17:21的版本
文章出处: |
{{#if: | {{{2}}} | https://help.ubuntu.com/community/WorldofWarcraft }} |
点击翻译: |
English {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/af | • {{#if: UbuntuHelp:WorldofWarcraft|Afrikaans| [[::WorldofWarcraft/af|Afrikaans]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ar | • {{#if: UbuntuHelp:WorldofWarcraft|العربية| [[::WorldofWarcraft/ar|العربية]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/az | • {{#if: UbuntuHelp:WorldofWarcraft|azərbaycanca| [[::WorldofWarcraft/az|azərbaycanca]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/bcc | • {{#if: UbuntuHelp:WorldofWarcraft|جهلسری بلوچی| [[::WorldofWarcraft/bcc|جهلسری بلوچی]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/bg | • {{#if: UbuntuHelp:WorldofWarcraft|български| [[::WorldofWarcraft/bg|български]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/br | • {{#if: UbuntuHelp:WorldofWarcraft|brezhoneg| [[::WorldofWarcraft/br|brezhoneg]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ca | • {{#if: UbuntuHelp:WorldofWarcraft|català| [[::WorldofWarcraft/ca|català]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/cs | • {{#if: UbuntuHelp:WorldofWarcraft|čeština| [[::WorldofWarcraft/cs|čeština]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/de | • {{#if: UbuntuHelp:WorldofWarcraft|Deutsch| [[::WorldofWarcraft/de|Deutsch]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/el | • {{#if: UbuntuHelp:WorldofWarcraft|Ελληνικά| [[::WorldofWarcraft/el|Ελληνικά]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/es | • {{#if: UbuntuHelp:WorldofWarcraft|español| [[::WorldofWarcraft/es|español]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/fa | • {{#if: UbuntuHelp:WorldofWarcraft|فارسی| [[::WorldofWarcraft/fa|فارسی]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/fi | • {{#if: UbuntuHelp:WorldofWarcraft|suomi| [[::WorldofWarcraft/fi|suomi]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/fr | • {{#if: UbuntuHelp:WorldofWarcraft|français| [[::WorldofWarcraft/fr|français]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/gu | • {{#if: UbuntuHelp:WorldofWarcraft|ગુજરાતી| [[::WorldofWarcraft/gu|ગુજરાતી]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/he | • {{#if: UbuntuHelp:WorldofWarcraft|עברית| [[::WorldofWarcraft/he|עברית]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/hu | • {{#if: UbuntuHelp:WorldofWarcraft|magyar| [[::WorldofWarcraft/hu|magyar]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/id | • {{#if: UbuntuHelp:WorldofWarcraft|Bahasa Indonesia| [[::WorldofWarcraft/id|Bahasa Indonesia]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/it | • {{#if: UbuntuHelp:WorldofWarcraft|italiano| [[::WorldofWarcraft/it|italiano]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ja | • {{#if: UbuntuHelp:WorldofWarcraft|日本語| [[::WorldofWarcraft/ja|日本語]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ko | • {{#if: UbuntuHelp:WorldofWarcraft|한국어| [[::WorldofWarcraft/ko|한국어]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ksh | • {{#if: UbuntuHelp:WorldofWarcraft|Ripoarisch| [[::WorldofWarcraft/ksh|Ripoarisch]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/mr | • {{#if: UbuntuHelp:WorldofWarcraft|मराठी| [[::WorldofWarcraft/mr|मराठी]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ms | • {{#if: UbuntuHelp:WorldofWarcraft|Bahasa Melayu| [[::WorldofWarcraft/ms|Bahasa Melayu]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/nl | • {{#if: UbuntuHelp:WorldofWarcraft|Nederlands| [[::WorldofWarcraft/nl|Nederlands]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/no | • {{#if: UbuntuHelp:WorldofWarcraft|norsk| [[::WorldofWarcraft/no|norsk]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/oc | • {{#if: UbuntuHelp:WorldofWarcraft|occitan| [[::WorldofWarcraft/oc|occitan]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/pl | • {{#if: UbuntuHelp:WorldofWarcraft|polski| [[::WorldofWarcraft/pl|polski]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/pt | • {{#if: UbuntuHelp:WorldofWarcraft|português| [[::WorldofWarcraft/pt|português]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ro | • {{#if: UbuntuHelp:WorldofWarcraft|română| [[::WorldofWarcraft/ro|română]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/ru | • {{#if: UbuntuHelp:WorldofWarcraft|русский| [[::WorldofWarcraft/ru|русский]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/si | • {{#if: UbuntuHelp:WorldofWarcraft|සිංහල| [[::WorldofWarcraft/si|සිංහල]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/sq | • {{#if: UbuntuHelp:WorldofWarcraft|shqip| [[::WorldofWarcraft/sq|shqip]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/sr | • {{#if: UbuntuHelp:WorldofWarcraft|српски / srpski| [[::WorldofWarcraft/sr|српски / srpski]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/sv | • {{#if: UbuntuHelp:WorldofWarcraft|svenska| [[::WorldofWarcraft/sv|svenska]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/th | • {{#if: UbuntuHelp:WorldofWarcraft|ไทย| [[::WorldofWarcraft/th|ไทย]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/tr | • {{#if: UbuntuHelp:WorldofWarcraft|Türkçe| [[::WorldofWarcraft/tr|Türkçe]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/vi | • {{#if: UbuntuHelp:WorldofWarcraft|Tiếng Việt| [[::WorldofWarcraft/vi|Tiếng Việt]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/yue | • {{#if: UbuntuHelp:WorldofWarcraft|粵語| [[::WorldofWarcraft/yue|粵語]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/zh | • {{#if: UbuntuHelp:WorldofWarcraft|中文| [[::WorldofWarcraft/zh|中文]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/zh-hans | • {{#if: UbuntuHelp:WorldofWarcraft|中文(简体)| [[::WorldofWarcraft/zh-hans|中文(简体)]]}}|}} {{#ifexist: {{#if: UbuntuHelp:WorldofWarcraft | UbuntuHelp:WorldofWarcraft | {{#if: | :}}WorldofWarcraft}}/zh-hant | • {{#if: UbuntuHelp:WorldofWarcraft|中文(繁體)| [[::WorldofWarcraft/zh-hant|中文(繁體)]]}}|}} |
{{#ifeq:UbuntuHelp:WorldofWarcraft|:WorldofWarcraft|请不要直接编辑翻译本页,本页将定期与来源同步。}} |
{{#ifexist: :WorldofWarcraft/zh | | {{#ifexist: WorldofWarcraft/zh | | {{#ifeq: {{#titleparts:WorldofWarcraft|1|-1|}} | zh | | }} }} }} {{#ifeq: {{#titleparts:WorldofWarcraft|1|-1|}} | zh | | }}
Parent: UbuntuHelp:Games
This howto is for installing and playing World of Warcraft using Wine under Ubuntu-x86.
Wine is a free open source implementation of the proprietary Win32 API, and attempts to enable Windows applications and games to run on Unix-like operating systems.
World of Warcraft can also be played under Ubuntu by using the proprietary Cedega and CrossOver Linux. This howto, however, does not address these two.
Before you begin the installation you need to run this simple command, that checks if your video card driver has proper functions enabled so it can run WoW:
glxinfo | grep rendering
Which should return a line similar to this:
direct rendering: Yes
However if this line says no to direct rendering, it means that your graphic card drivers won't be able to run WoW. Please refer to the Troubleshooting section on this page for more info.
Installing Wine
The official deb package file of Wine from WineHQ's download page, is recommended for most users, as it works almost out of the box for most people, and has a gold rating at the moment.
For full instructions on installing Wine see the UbuntuHelp:Wine page.
Deb package
To install the deb you need to add the WineHQ repository and then install Wine. For additional help on adding repositories, see the UbuntuHelp:Repositories page.
- Open a terminal(also called a console, CLI, and command prompt) and choose one of the following two commands to run, based on your version of Ubuntu:
For Ubuntu Gutsy Gibbon (7.10):
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/gutsy.list -O /etc/apt/sources.list.d/winehq.list
For Ubuntu Feisty Fawn (7.04):
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/feisty.list -O /etc/apt/sources.list.d/winehq.list
- 2 Now do these three commands in a terminal:
wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add - sudo apt-get update sudo apt-get install wine
- 3 Before proceeding to install World of Warcraft you must run winecfg at least once (it must setup the ~/.wine directory structure before you can install Windows applications into it). This is a very important step. In a Terminal window type the following:
winecfg
Select your Windows type, configure disk and removable drives, etc, then press Apply and Ok. As it closes, winecfg will create a .wine directory structure in your home folder, populating with information about drives and devices installed in your system. If you fail to do this before trying to install World of Warcraft then you'll probably see errors like the following when running winecfg in the future:
err:winecfg:apply_drive_changes unable to define devicename of 'C:'
Compiling Wine from source
Other experienced users, who are unable to make this work or just want more control over the installation, may want to try to compile Wine from source in order to play WoW. Instructions can be found here: https://wiki.ubuntu.com/BuildingWineFromSource
Installing WoW
Original WoW
The best method, if you have access to the installation discs is to copy the contents to your hard disk and run them from there:
- Create a convenient directory ( 'wow_install' on your Desktop for example)
- Copy all of the files from the first WoW CD to this new directory.
- For each of the remaining WoW CD's, copy just the 'Installer Tome #.mpq' files. In the end, you should have the 'DirectX' directory, and the 'autorun.inf', 'installer.ico', 'Installer Tome.mpq', and 'Installer.exe' files from disc 1, and 'Installer Tome 2.mpq', 'Installer Tome 3.mpq', 'Installer Tome 4.mpq', and 'Installer Tome 5.mpq' from the remaining discs. Note that the 'Installer.exe' file on the first disc is different from the files of the same name on the subsequent discs; if you get the wrong on the install will fail with
Unrecognized key "options". (AttributeParser::Parse)
- Start the installation by opening a terminal and running these commands:
cd /<path-to-directory>/ wine Installer.exe
Replace <path-to-directory/>
with the right path to the directory where you copied all the files above.
Some dialogs during installation may appear blank or garbled, and the installer may even hang for up to 5 minutes at 100% CPU, while appearing to be doing nothing. Simply wait and click next when possible.
Note: If you have not already done so, you may want to install Microsoft's proprietary fonts, because they can solve some text related graphical glitches during installation.
Burning Crusade
The BC install is more or less the same as the base game install.
- Create a new directory separate from the directory where you copied the original game discs.
- Copy the 'Autorun.inf', 'Installer.exe', 'Installer.ico', and 'Installer Tome.mpq' files from the first Burning Crusade disc to this new directory.
- Copy just 'Installer Tome 2.mpq', 'Installer Tome 3.mpq', and 'Installer Tome 4.mpq' from the remaining install discs.
- Run the installer by opening a terminal and executing these commands:
cd /<path-to-directory>/ wine Installer.exe
Replace <path-to-directory/>
with the right path to the directory where you copied all the files (the BC files, not the original WoW files).
Alternate Installation Methods
If the above isn't possible for some reason (you don't have the discs for example, or a working media drive), here's some alternate ways to install the game.
Alternative 1 (Copy from Windows):
You can also just install WoW in Windows and then copy the entire World of Warcraft folder over from your Windows installation.
Alternative 2 (Download the Entire Game):
If you have lost a CD, do not have access to a CD drive or simply would not like to bother with patching and messing with the CD's, you can download and run the install of the trial version, which is in fact the full game almost fully patched, from the blizzard torrentlike downloader. They work very nicely with Wine.
Installer Downloads: Original WoW - US Version Burning Crusade - US Version (requires a valid account for log in) WoW - European clients, in all languages
In order to use the Blizzard Downloader effectively, you must 1) open certain ports on your computer and 2) enable port forwarding on your router.
Firewall Configuration for Blizzard Downloader
The easiest way to open these ports is to use the firewall program Firestarter.
- From the command line, install Firestarter with this command:
sudo apt-get install firestarter
. - When it is running, select the "Policy" tab, right-click in the Allow Service area, and select Add Rule.
- Under port, type
6112
and make sure that the "Anyone" radio button is selected. Make a note in the comments field that this port relates to Blizzard. - Repeat these steps for ports
3724
and for the range6881-6999
(which will be recognized as BitTorrent ports).
Router Configuration for Blizzard Downloader
Next, configure your router to forward those ports on the router to your computer only. The steps are similar to the above, but vary slighly from router to router and may be found on Blizzard's website: [1]
Once the firewall is configured and the network port forwarding is working, run the downloader with (Burning Crusade US Version example):
wine WoW-BurningCrusade-enUS-Installer-downloader.exe
Configuration
Config.wtf
WoW uses DirectX by default, but for most people it will not perform well in this mode. If this is the case for you, then you should change it to run in OpenGL mode instead.
To do this you need to find the file wtf/Config.wtf
in your main WoW directory. By default it is found in /home/<username>/.wine/drive_c/Program\ Files/World\ of\ Warcraft/
, where <username> is you computer login name. Note that since .wine begins with a period, you will not be able to see it, but you may still access it in a terminal. In the Nautilus file manager, you can press Ctrl + h
to see hidden files. If config.wtf does not exist, run the game and log into a character. The game should then create the file. Open it using a text editor, and add the following line to it:
SET gxApi "opengl"
If you experience poor performance, graphical glitches, or the game does not run at all, then add the following options as well:
SET ffxDeath "0" SET ffxGlow "0"
Note that disabling ffxGlow may also enable antialiasing for some users.
If you experience stuttering, bad sound or no sound what so ever, then add the following options as well:
SET SoundOutputSystem "1" SET SoundBufferSize "150"
winecfg
If you experience stuttering, bad sound or no sound what so ever, then you must try a few things in winecfg
. Just type winecfg
in a terminal, press enter, and the wine configuration application window should appear and you should go to the audio tab
.
For most people OSS
will work better than ALSA
, so you should make sure that only OSS
is ticked. But for some ALSA
works better, so try that as a second solution, make sure you only have one ticked at a time.
Also, refer to the Voice chat section for information on getting multiple audio streams working with OSS
and ALSA
(more than one program using audio at once). It will wave you grief should you ever want to listen to music and chat on Ventrilo or Teamspeak while playing, and similar.
You may also try ticking Driver Emulation
. Remove it again if it does not help.
Registry configuration
This is a simple registry edit for Wine that will dramatically increase the framerate in game. It is gathered from this thread on Ubuntuforums.org: http://www.ubuntuforums.org/showthread.php?t=303509
Open a terminal window, type regedit
and press enter. This will start the Wine equivalent of the windows registry editor. If you are familiar with using the registry editor under windows then this is pretty much the same.
- Find this key
HKEY_CURRENT_USER\Software\Wine\
- Highlight the wine folder in the left hand pane by clicking left on it. The icon should change to an open folder
- Click right on the wine folder and select
[NEW]
then[KEY]
- Replace the text
New Key #1
withOpenGL
- Click right in the right hand pane and select
[NEW]
then[String Value]
- Replace
New Value #1
withDisabledExtensions
(Notice it's case sensitive!)
- 7 Then double click anywhere on the line, a dialog box will open.
- In the value field type
GL_ARB_vertex_buffer_object
Note: If you are unable to rename the newly created key "New Key #1" to "OpenGL" then expand the left hand pane of the regedit window using the vertical divider bar. You should now be able to change it. A known bug in Wine is causing this unwanted behavior.
Playing
Start from the Desktop Icon
Double click the icon you find on your Desktop titled World of Warcraft, this will start the launcher. If you have never used something requiring HTML rendering with Wine you will be prompted to download and install the Gecko rendering engine, you should do this as it will enable the WoW Launcher to display news.
Start from the Terminal
Starting from the terminal is simple, just enter:
wine "C:\Program Files\World of Warcraft\Launcher.exe"
(install when prompted about the Gecko rendering engine)
Or, dive right into the game with:
wine "C:\Program Files\World of Warcraft\WoW.exe"
You can make a Gnome menu entry for WoW by doing the following commands in a terminal:
wget http://kde-files.org/CONTENT/content-files/41569-wow-icon-scalable.svg sudo mv 41569-wow-icon-scalable.svg /usr/share/icons/ gksudo gedit /usr/share/applications/wow.desktop
Add this to the text editor window, which should have appeared after the third command, change <username>
in the Exec=
line to your computer login username, and save:
[Desktop Entry] Encoding=UTF-8 Name=World of Warcraft Name[hr]=World of Warcraft Exec=wine /home/<username>/.wine/drive_c/Program\ Files/World\ of\ Warcraft/WoW.exe Icon=41569-wow-icon-scalable.svg Terminal=false Type=Application Categories=Application;Game; StartupNotify=false
Note: Remember that you should also edit the Exec=
line to reflect your WoW installation path, if you've installed to a special location.
Voice chat
If you choose to configure Wine to use OSS for sound, then you will experience an issue with making voice chat applications and WoW use sound input and output simultaneously. You need to be able to mix sound in order for this to work, but most modern onboard soundcards do not support hardware sound mixing. You will either have to get a PCI soundcard, which supports this feature, or use software mixing. The issue with software mixing comes down to the two different sound interface architectures available in Linux, OSS
and ALSA
.
OSS(old/legacy): Does not allow you to use software mixing. Meaning only ONE application will be able to use sound at a time.
ALSA(new): Allows software mixing. Meaning several programs can use sound simultaneously.
However, as stated previously in this howto, for some people the sound may stutter or be otherwise corrupted when using ALSA, this may force you to use OSS.
So you see the problem:
- WoW runs in Wine, ergo uses OSS
- Ventrilo runs in Wine, ergo uses OSS
- The Linux version of TeamSpeak is based on OSS
Only one of these applications will be able to use sound at a time, but this can be solved by using alsa-oss, which channels OSS applications through ALSA, making them them work more or less like regular ALSA programs.
ALSA-OSS is installed by running this command:
sudo apt-get install alsa-oss
And then one uses it by starting the programs with the "aoss" command, something like this:
aoss /path-to-program/TeamSpeak
aoss wine /path-to-program/Ventrilo.exe
aoss wine /path-to-program/WoW.exe
Remember that both the voice chat program and WoW need to be run with the aoss command in front.
Short and Simple
This is a simplified method of installing and configuring Wine and WoW. It is based on highly personal information, does not work for all computer configurations, does not configure Wine right, only mentions one possible way of installing WoW out of several, and does not address EU gamers.
- Enable the binary video driver for your card. (applies to nVidia and ATI cards.)
- Install UbuntuHelp:Wine from Ubuntu's Universe repository.
- Run the installer from https://signup.worldofwarcraft.com/trial/10dayfreetrial.htm (or the CDs - I don't have them, so can't document.)
- When you first run the game, it may ask "Download and install Gecko?" say "yes".
You don't have to do these, but here are few simple tweaks to make things even better.
- System, preferences, appearance, set visual effects to None. This also gets rid of the task bars during game play.
- add this key to the registry: [HKEY_CURRENT_USER\Software\Wine\OpenGL] "DisabledExtensions"="GL_ARB_vertex_buffer_object"
Troubleshooting
This section has been moved to its own article for better overview and navigation.
See [2]
Support and discussion
For support and discussion on the subject of this howto, please post at: http://ubuntuforums.org/showthread.php?t=579378
Related links
For more information regarding WoW under Wine see Wine's official page on WoW at: http://appdb.winehq.org/objectManager.php?sClass=application&iId=1922
The howto found on www.wowwiki.com is also one of the best resources for info on this subject: http://www.wowwiki.com/Linux/Wine
The Gentoo wiki also contains good information, especially for those that need more detailed info: http://gentoo-wiki.com/HOWTO_Install_and_update_World_Of_Warcraft_with_wine