Skip to content

Instantly share code, notes, and snippets.

@coolaj86
Last active December 12, 2015 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolaj86/4713132 to your computer and use it in GitHub Desktop.
Save coolaj86/4713132 to your computer and use it in GitHub Desktop.
#!/bin/bash
pushd /tmp
apt-get install -y curl wget
wget http://media.steampowered.com/client/installer/steam.deb
dpkg -i steam.deb
apt-get install -yf
popd
#!/bin/bash
# See http://steamcommunity.com/app/221410/discussions/0/846940247807787326/
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F24AEA9FB05498B7
REPO="deb http://repo.steampowered.com/steam/ $(lsb_release -cs) steam"
echo "${REPO}" > /etc/apt/sources.list.d/steam.list
apt-get update
apt-get install -y steam
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment