2023-04-04 14:13:37 +00:00
|
|
|
#!/bin/bash
|
2023-04-04 14:18:26 +00:00
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
2024-03-09 23:57:47 +00:00
|
|
|
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 \
|
2023-04-04 14:13:37 +00:00
|
|
|
virt-manager \
|
|
|
|
dnsmasq \
|
|
|
|
iptables-nft \
|
|
|
|
swtpm \
|
|
|
|
lxc \
|
2024-03-09 19:00:31 +00:00
|
|
|
virt-bootstrap-git \
|
|
|
|
;
|
2023-04-04 14:13:37 +00:00
|
|
|
|
|
|
|
sudo systemctl enable --now libvirtd;
|
|
|
|
sudo systemctl enable --now virtlogd;
|
2023-04-04 14:18:26 +00:00
|
|
|
. "../../../Common/Config/Virtual Machine Manager/install.sh";
|
|
|
|
|
|
|
|
popd > /dev/null;
|