Install virtualization and hardware helper packages

Added installation of virtualization tools and hardware helpers.
This commit is contained in:
humocs-man
2026-04-24 20:45:12 +02:00
committed by GitHub
parent a797072983
commit 98291c0d14
+19 -3
View File
@@ -1,9 +1,25 @@
#!/usr/bin/bash #!/usr/bin/bash
set -eoux pipefail set -eoux pipefail
###############################################################################
# Transaction 2: Virtualization, Tools & Hardware Helpers
# Zusammengefasst für effizientere Paketauflösung.
###############################################################################
echo "Installing Virtualization, Plasma Setup and Hardware Helpers..."
dnf5 install -y \
libvirt-daemon \
libvirt-daemon-driver-qemu \
libvirt-daemon-config-network \
libvirt-client \
qemu-kvm \
qemu-img \
virt-manager \
virt-viewer \
distrobox \
plasma-setup \
libva-utils \
intel-media-driver \
--allowerasing || true
# --- 2. Die sofortige Bereinigung (WICHTIG!) --- # --- 2. Die sofortige Bereinigung (WICHTIG!) ---
echo "Cleaning up this layer..." echo "Cleaning up this layer..."