The ultimate gaming virtual machine on proxmox

Описание к видео The ultimate gaming virtual machine on proxmox

For business inqueries or consultation send me an email to: [email protected]

In this video I show you how to install and configure a proxomox virtual machine with gpu passthrough for all your creative needs!

######### Commands used #########
lspci | grep -i nvidia

lspci -v

echo 'vfio-pci' > /etc/modules-load.d/vfio-pci.conf
nano /etc/modules-load.d/vfio-pci.conf

lspci -nn | grep -i nvidia

echo 'options vfio-pci ids=10de:1d81,10de:10f2' > /etc/modprobe.d/vfio.conf
nano /etc/modprobe.d/vfio.conf

nano /etc/default/grub
intel_iommu=on
update-grub

lsmod | grep vfio

nano /root/iommu_group.sh

###### iommu script ######
#!/bin/bash
shopt -s nullglob
for g in $(find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V); do
echo "IOMMU Group ${g##*/}:"
for d in $g/devices/*; do
echo -e "\t$(lspci -nns ${d##*/})"
done;
done;
######################

chmod +x /root/iommu_group.sh
/root/iommu_group.sh
###############################

Virt-io drivers
https://fedorapeople.org/groups/virt/...

Windows 10 iso
https://www.microsoft.com/en-ca/softw...

###### AMD cpus or single gpu machines ######
Add the following to your grub configuration right next to intel_iommu=on

A. Disabling the Framebuffer: video=vesafb:off,efifb:off
B. ACS Override for IOMMU groups: pcie_acs_override=downstream,multifunction

0:00 - vfio configuration
2:58 - iommu configuration
4:46 - bios settings
5:48 - vfio validation
6:37 - iommu validation
7:49 - Windows vm creation
11:13 - windows vfio drivers
12:17 - gpu passthrough
13:24 - nvidia driver installation
14:59 - moment of truth
15:25 - options for using the vm
16:35 - vm vs baremetal benchmark

#proxmox #gpubenchmark #debian #linux_tutorial #linux #gpupassthrough

Комментарии

Информация по комментариям в разработке