Add a script for configuring virt-manager
This commit is contained in:
parent
d46d855015
commit
75be220aea
2 changed files with 7 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||||
|
|
||||||
yay --noconfirm -Syu \
|
yay --noconfirm -Syu \
|
||||||
virt-manager \
|
virt-manager \
|
||||||
qemu-full \
|
qemu-full \
|
||||||
|
@ -10,3 +12,6 @@ yay --noconfirm -Syu \
|
||||||
|
|
||||||
sudo systemctl enable --now libvirtd;
|
sudo systemctl enable --now libvirtd;
|
||||||
sudo systemctl enable --now virtlogd;
|
sudo systemctl enable --now virtlogd;
|
||||||
|
. "../../../Common/Config/Virtual Machine Manager/install.sh";
|
||||||
|
|
||||||
|
popd > /dev/null;
|
||||||
|
|
2
scripts/Common/Config/Virtual Machine Manager/install.sh
Executable file
2
scripts/Common/Config/Virtual Machine Manager/install.sh
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
usermod -aG libvirt "$USER";
|
Loading…
Reference in a new issue