commit 5f34ed07ee776f9bec4f337fc4cc75e08297c06c
parent 070bf00c4b40db879a6c599f0a5170e79f4d5b15
Author: awy <awy@awy.one>
Date: Sat, 15 Feb 2025 20:09:03 +0300
readme
Diffstat:
2 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/README.md b/README.md
@@ -1 +1,9 @@
-# gpu_pass
-\ No newline at end of file
+Qemu Virtualization Setup Script
+================================
+This script installs all dependencies needed for QEMU/KVM virtualization
+and hooks for single gpu passthrough.
+
+Requirenments
+-------------
+Artix+dinit
+NVIDIA GPU
diff --git a/gpu_pass.sh b/gpu_pass.sh
@@ -2,7 +2,8 @@
set -e
WORKDIRECTORY=$PWD
-PERMUSER=awy
+PERMUSER=$(logname)
+
if [ "$(id -u)" -ne 0 ]
then printf "The script has to be run as root.\n"
exit
@@ -11,21 +12,15 @@ fi
doas -u $PERMUSER mkdir -p /home/$PERMUSER/.local/share/vgabios
doas -u $PERMUSER cp $WORKDIRECTORY/Hooks/patch.rom /home/$PERMUSER/.local/share/vgabios
-#pacman -S qemu libvirt edk2-ovmf virt-manager ebtables dnsmasq wget qemu-ui-sdl qemu-ui-gtk
-#systemctl enable libvirtd.service
-#systemctl start libvirtd.service
-#systemctl enable virtlogd.socket
-#systemctl start virtlogd.socket
-#virsh net-autostart default
-#virsh net-start default
-
pacman -Sy --noconfirm
pacman -S qemu-desktop libvirt libvirt-dinit edk2-ovmf virt-manager dnsmasq wget --noconfirm
mkdir /etc/libvirt/hooks
+# Online version
#wget 'https://raw.githubusercontent.com/PassthroughPOST/VFIO-Tools/master/libvirt_hooks/qemu' \
# -O /etc/libvirt/hooks/qemu
+
cp $WORKDIRECTORY/Hooks/qemu /etc/libvirt/hooks/
chmod +x /etc/libvirt/hooks/qemu