InstallingSteam

Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2007-04-07 22:14:07
Size: 2711
Editor: AC8D7A72
Comment: moving to correct category
Revision 5 as of 2008-08-06 17:01:41
Size: 2765
Editor: localhost
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
attachment:wine_install.png {{attachment:wine_install.png}}
Line 12: Line 12:
attachment:copyfont.png {{attachment:copyfont.png}}
Line 16: Line 16:
attachment:steam_install.png {{attachment:steam_install.png}}
Line 18: Line 18:
attachment:part2_steam.png {{attachment:part2_steam.png}}
Line 20: Line 20:
attachment:part3_steam.png {{attachment:part3_steam.png}}
Line 22: Line 22:
attachment:part4_steam.png {{attachment:part4_steam.png}}
Line 24: Line 24:
attachment:part5_steam.png {{attachment:part5_steam.png}}
Line 26: Line 26:
attachment:part6_steam.png {{attachment:part6_steam.png}}
Line 28: Line 28:
attachment:part7_steam.png {{attachment:part7_steam.png}}
Line 30: Line 30:
attachment:part8_steam.png {{attachment:part8_steam.png}}
Line 32: Line 32:
attachment:part9_steam.png {{attachment:part9_steam.png}}
Line 37: Line 37:
attachment:run_steam.png {{attachment:run_steam.png}}
Line 43: Line 43:
 {{{#!/bin/sh  {{{
#!/bin/sh
Line 49: Line 50:
attachment:chmod.png {{attachment:chmod.png}}

PART ONE: INSTALLING WINE AND STEAM By: Brandon Powell

  • The main reason for not switching to Ubuntu or any other Linux distribution is games. People like to play their video games. Now is the age of the Linux desktop. More and more games are getting to the point in which they can be played under Linux. One of the popular game services is Steam. This how-to will cover how to install wine and Steam. It will work under any version of Ubuntu. The first step to gaming under Linux is to install wine. Wine is a Windows emulator and it is free. There are other programs that allow you to play your Windows games under Linux, like Cedega, but they cost money. To install wine open up a Terminal and type in sudo apt-get install wine.

wine_install.png

  • While wine is downloading go to http://www.steampowered.com/v/index.php and download the installer. After wine is done being installed, run wine iexplore http://winehq.org and install Gecko. Now copy over tahoma.ttf font from a Windows install or off the internet to ~/.wine/drive_c/windows/fonts/.

copyfont.png

  • The installer will be an MSI file, not an EXE. Once that file is downloaded, in the Terminal changed to that directory. The next step is to do a msiexec /i SteamInstall.msi.

steam_install.png

part2_steam.png

part3_steam.png

part4_steam.png

part5_steam.png

part6_steam.png

part7_steam.png

part8_steam.png

part9_steam.png

  • Wine and Steam are now both installed. Now it is time to download the games and fire them up. If Steam did not make a desktop icon there are two ways to get Steam running. The first option is to run Steam from the Terminal. The second one is to create a shell script to bring Steam up. To use the first method, change to the directory in which Steam is installed. That directory would normally be ~/.wine/drive_c/Program Files/Steam. Do a cd ~/.wine/drive_c/Program\ Files/Steam/ and then a wine Steam.exe.

run_steam.png

  • The other way we create a shell script to do it. Open up a text editor, like gedit and paste the following in it.
            cd ~/.wine/drive_c/Program\ Files/Steam
            wine Steam.exe

Save the file and change the permissions on it. To change the permissions do a chmod a+x file_name.sh. Change file_name to the actual name of the file that was created.

chmod.png

Now to run Steam, just click on that file. The next article will cover how to actually get the games up and running with some performance tweaking.

UbuntuMagazine/HowTo/InstallingSteam (last edited 2008-08-06 17:01:41 by localhost)