Last active
February 25, 2021 15:14
-
-
Save Regenhardt/2773f20b05254f70917bceaedbb76a2a to your computer and use it in GitHub Desktop.
Script that makes a user and installs steamCMD on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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