Files
fluffy-pancake/build/30-virt.sh
T

31 lines
817 B
Bash
Raw Normal View History

2026-04-24 20:44:25 +02:00
#!/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 \
2026-05-04 19:25:42 +02:00
--allowerasing \
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 \
micro \
fuse3-libs
2026-05-03 21:35:51 +02:00
2026-04-24 20:44:25 +02:00
# --- 2. Die sofortige Bereinigung (WICHTIG!) ---
echo "Cleaning up this layer..."
dnf5 clean all || true
dnf5 autoremove -y || true
rm -rf /tmp/* /var/tmp/* || true