Skip to content

Instantly share code, notes, and snippets.

@vespakoen
Created April 21, 2015 22:03
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save vespakoen/b6825baefd9604bf5dd4 to your computer and use it in GitHub Desktop.
Save vespakoen/b6825baefd9604bf5dd4 to your computer and use it in GitHub Desktop.
install steam & age of empires 2 HD on ubuntu 14.04
# install wine 1.7
add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.7
# download steam
curl -o ~/Downloads/SteamSetup.exe http://media.steampowered.com/client/installer/SteamSetup.exe
# install some tricks
winetricks vcrun2010
winetricks d3dx9_43
winetricks xact
# install steam
wine ~/Downloads/SteamSetup.exe -no-dwrite
# run steam with -no-dwrite so it will show fonts
wine ~/.wine/drive_c/Program\ Files\ \(x86\)/Steam/Steam.exe -no-dwrite
# !!!!!!!!!!! INSTALL AGE OF EMPIRES VIA STEAM HERE !!!!!!!!!!!1
cd ~/.wine/drive_c/Program\ Files\ \(x86\)/Steam/steamapps/common/Age2HD/
# backup the old launcher
mv Launcher.exe Launcher.bak
# move age of empires exe there instead
mv AoK\ HD.exe Launcher.exe
# rename _CommonRedist to stop installation of directx / vcrun on startup
mv _CommonRedist _CommonRedistOld
# PLAY!
@Rhevin
Copy link

Rhevin commented Jul 26, 2018

you also need to install cabextract to make this run successfully if you're using arch or manjaro 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment