Version: 0.7
Table of Content
- Welcome
- Prepare WoW
- Grafic
- WINE, WineTricks, Gecko
- Installation of WoW
- Teamspeak
- First run of WoW
-----------------------------------------------------------------------
1) Welcome
Hello 
Welcome to this guide on how to install World of Warcraft (retail) to a fresh installation on Fedora 15 (works with both, 32 and 64 bit kernel).
I'm playing WoW since open beta back in 2004-2005, so i'm pretty addicted to it, one could say.
Anyways, as i like playing WoW as well as Fedora 15, i dont want missing any of these.
We'll be installing all (as far i know = afaik) required pieces to get World of Warcraft running on our beloved Fedora 
Speaking for myself, dualboot is no real alternative. I wanted to get away from Windows and its lagy behaviour.
So, this is the reason why i wrote this guide.
I do hope you'll find what you need to get WoW running with your Fedora 15.
As i recently walked by some nice sh scripts, i used them as template to write my own script to do this guide's work. You'll find it attached at the end of 2nd post.
-----------------------------------------------------------------------
2) Prepare WoW Installation:
If you have an installed WoW folder with a complete installation, you surly can go to the next step.
As you'll need to download over 9gigs of data anyway, there is no need to bother with the DVD.
If you prefer installing it from DvD, you might need this
PHP Code:
su
(password)
mount -o remount,unhide /dev/cdrom
Refresh the Filebrowsers view, you should see now some more files, copy all of them into a local folder.
Download the Internet-Installer for World of Warcraft from your Account Management page.
Europe: https://eu.battle.net/account/management/download/
USA: https://us.battle.net/account/management/download/
As i'm swiss, i'll be refering to "euDE", for USA players it'll be "usEN"
Once copied or downloaded, wait until WINE is installed.
-----------------------------------------------------------------------
3) Grafic
Your first step step should be to run this line:
PHP Code:
glxinfo | grep rendering
The answer you get should be:
If so, great, if not you need to update your grafic drivers.
Leigh hast a great post about nVidia Drivers which may help.
Leigh has also a great post about ATI / Catalyst Drivers.
TODO: Laptop with Intel drivers? (mine's working though)
-----------------------------------------------------------------------
4) WINE, Gecko and WineTricks:
We're need something to 'translate' the Windows install stuff into Linux stuff, so WoW can be run.
This something is named WINE (WINE Is Not an Emulator).
Before installing WINE, make sure your system is up-to-date:
Installing WINE is quite easy doing, open your shell then run:
If you have nothing modified during Fedora 15 installtion, try this.
PHP Code:
yum install wine # This is for 32 bit systems
yum install wine.i686 # This is suggested for 64bit systems
If you HAVE modified something during installation of Fedora 15, better try this instead:
PHP Code:
yum --enablerepo=updates-testing install wine
In addition we'll be needing:
PHP Code:
yum install cabextract
After Wine is installed, use the RegEdit, to be found in your apps, or by running:
Press Alt+F2 then type: regedit
Wine will tell you to install Gecko, deny it as we're installing it later the manual way.
In RegEdit
1. goto:
HKEY_CURRENT_USER\Software\Wine\
2. Right-click on the
wine folder and select [NEW][KEY]
3. Name it:
OpenGL
4. Right-click the "OpenGL"key then choose [NEW] then [String Value]
5. Name it:
DisabledExtensions
6. Change its Value by double clicking on that line.
7. In the value field type
GL_ARB_vertex_buffer_object
There is a WINE error, to remove it apply this workaround at your own risk.
Note: I deny any responsibility for malfunctions or security issues that may occour if you do apply this workaround.
PHP Code:
su
(password)
grep wine /var/log/audit/audit.log | audit2allow -M mypol
semodule -i mypol.pp
We're now installing Gecko the manual way.
PHP Code:
wget "http://downloads.sourceforge.net/wine/wine_gecko-1.2.0-x86.msi"
sudo mkdir -p /usr/share/wine/gecko
sudo mv wine_gecko-1.2.0-x86.msi /usr/share/wine/gecko/
WineTricks brings some nice tweaks
PHP Code:
su
(password)
wget "http://winetricks.org/winetricks"
chmod +x winetricks
mv winetricks /usr/local/bin
Now installing some other required tweaks with winetricks
PHP Code:
winetricks wininet winhttp ie7 pngfilt vcrun6sp6 vcrun2005 d3dx9_36 d3dx9_42
Now in order to complete IE7 tweak, start it with wine:
If you're having font issues, this line might help.
PHP Code:
winetricks liberation corefonts
-----------------------------------------------------------------------
5) Install World of Warcraft
By now all the files from the DvD should be copied to your harddisk or the internet installer should have finished.
Browse to the folder were the files are and either one of the lines:
PHP Code:
wine WoW-4.0.0-WOW-euDE-Installer.exe // Where "eu" is your Country and "DE" your Language.
or with the copied files
PHP Code:
wine installer.exe
Follow the install procedure, i'd suggest you install to "c:\games\wow" for easiest access for a single installation.