30 lines
803 B
Bash
Executable File
30 lines
803 B
Bash
Executable File
#!/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 \
|
|
--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
|
|
|
|
# --- 2. Die sofortige Bereinigung (WICHTIG!) ---
|
|
echo "Cleaning up this layer..."
|
|
dnf5 clean all || true
|
|
dnf5 autoremove -y || true
|
|
rm -rf /tmp/* /var/tmp/* || true
|
|
|