Hello,
I did make this script to passthrough my Geforce FX1600 with proxmox 7.4
I did a fresh installation launched the script, restored my VM Windows 10, but the VM starts but no display.
Do you know why with the latest version of Proxmox the config doesn't work, what did change ? Many Thanks
Read more
I did make this script to passthrough my Geforce FX1600 with proxmox 7.4
I did a fresh installation launched the script, restored my VM Windows 10, but the VM starts but no display.
Do you know why with the latest version of Proxmox the config doesn't work, what did change ? Many Thanks
Code:
#!/bin/bash
# Vérifier si l'utilisateur est root
if [[ $EUID -ne 0 ]]; then
echo "Ce script doit être exécuté en tant que root."
exit 1
fi
# Modifier /etc/default/grub
echo...
Read more