Skip to content

Instantly share code, notes, and snippets.

@Regenhardt
Last active February 25, 2021 15:14
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 Regenhardt/2773f20b05254f70917bceaedbb76a2a to your computer and use it in GitHub Desktop.
Save Regenhardt/2773f20b05254f70917bceaedbb76a2a to your computer and use it in GitHub Desktop.
Script that makes a user and installs steamCMD on Linux
# steamCMD user
sudo useradd -m steam
cd /home/steam
## 64-bit
sudo apt update && sudo apt upgrade
sudo apt install software-properties-common
sudo add-apt-repository multiverse
sudo dpkg --add-architecture i386
# steamCMD
sudo apt update
sudo apt install lib32gcc1 steamcmd
# provide for steamCMD user
sudo ln -s /usr/games/steamcmd steamcmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment