19 lines
489 B
Bash
Executable File
19 lines
489 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 \
|
|
distrobox \
|
|
plasma-setup \
|
|
libva-utils \
|
|
micro \
|
|
fuse-libs
|
|
|
|
|
|
|