Initial commit

This commit is contained in:
2023-10-13 22:29:27 +02:00
commit 2868fc56a9
5 changed files with 118 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
# Steam
## Tested with
* Linux Mint 21.2 Cinnamon
* Steam Version 1696019606
## Installation steps
```
sudo wget -O- http://repo.steampowered.com/steam/archive/stable/steam.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/steam.gpg
```
```
echo deb [arch=amd64 signed-by=/usr/share/keyrings/steam.gpg] http://repo.steampowered.com/steam/ stable steam | sudo tee /etc/apt/sources.list.d/steam.list
```
```
sudo apt update
```
```
sudo apt install -y steam
```
## Removal
```
sudo apt autoremove -y --purge steam
```
## Source
* [Linux Shout](https://linux.how2shout.com/3-ways-to-install-steam-on-linux-mint-or-lmde/)