Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bkaradzic
Last active January 3, 2016 16:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkaradzic/8487361 to your computer and use it in GitHub Desktop.
Save bkaradzic/8487361 to your computer and use it in GitHub Desktop.
Using SteamBox as DevKit

Using SteamBox as DevKit

In SteamOS go to Settings / Intefrace and check "Enable access to the Linux desktop" option.

Click on Exit, choose "Return to Desktop".

Open terminal and set password so sudo can work:

passwd

Add Debian packages into repositories. Edit /etc/apt/sources.list, and at the bottom add:

deb http://ftp.us.debian.org/debian stable main contrib non-free
deb-src http://ftp.us.debian.org/debian stable main contrib non-free

Run:

sudo apt-get update
sudo apt-get -f install

Installing CA certificates (needed for SSL):

sudo apt-get install ca-certificates

After this point SteamOS will behave more-or-less like regular Debian distro (apt-get whatever).

Installing Steam Runtime SDK:

wget http://media.steampowered.com/client/runtime/steam-runtime-sdk_latest.tar.xz
tar xf steam-runtime-sdk_latest.tar.xz
cd steam-runtime-sdk_2013-09-05
./setup.sh

Run shell from Steam Runtime SDK:

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