20 lines
409 B
Bash
Executable File
20 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Sicherstellen, dass das Skript mit Root-Rechten ausgeführt wird
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "Dieses Skript muss als root ausgeführt werden."
|
|
exit 1
|
|
fi
|
|
|
|
# System aktualisieren
|
|
apt update && apt upgrade -y
|
|
|
|
# Steam-Installation
|
|
dpkg --add-architecture i386
|
|
apt update
|
|
apt install -y wget curl
|
|
|
|
apt install -y steam lutris
|
|
|
|
echo "✅ Installation von Steam und Lutris abgeschlossen!"
|