From 98291c0d14669a5b8d1b648cde304520f008b02b Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:45:12 +0200 Subject: [PATCH] Install virtualization and hardware helper packages Added installation of virtualization tools and hardware helpers. --- build/30-virt.sh | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/build/30-virt.sh b/build/30-virt.sh index 23996ed..4f27428 100644 --- a/build/30-virt.sh +++ b/build/30-virt.sh @@ -1,9 +1,25 @@ #!/usr/bin/bash 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!) --- echo "Cleaning up this layer..."