Add script to install Steam and i686 libraries

This commit is contained in:
humocs-man
2026-04-24 20:47:18 +02:00
committed by GitHub
parent 98291c0d14
commit be14492ec8
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Transaction 3: Steam (i686 dependencies)
# Getrennt, da Architektur-Wechsel (i686) oft eigene Transaktionen erfordern.
###############################################################################
echo "Installing Steam and i686 libraries..."
dnf5 install -y \
steam \
mesa-dri-drivers.i686 \
mesa-libGL.i686 \
mesa-libEGL.i686 \
--allowerasing
# --- 2. Die sofortige Bereinigung (WICHTIG!) ---
echo "Cleaning up this layer..."
dnf5 clean all || true
dnf5 autoremove -y || true
rm -rf /tmp/* /var/tmp/* || true