PortValhalla/scripts/Arch/Software/Virtual Machine Manager/install.sh

23 lines
432 B
Bash
Raw Normal View History

#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay --noconfirm -Syu \
qemu-full \
;
2023-04-07 00:10:45 +00:00
yes | yay --answerclean=None --answerdiff=None -Syu \
2023-06-13 23:31:31 +00:00
virtiofsd \
virt-manager \
dnsmasq \
iptables-nft \
swtpm \
lxc \
2024-03-09 19:00:31 +00:00
virt-bootstrap-git \
;
sudo systemctl enable --now libvirtd;
sudo systemctl enable --now virtlogd;
. "../../../Common/Config/Virtual Machine Manager/install.sh";
popd > /dev/null;