PCI Passthrough

From Proxmox VE
Revision as of 10:37, 30 March 2012 by Alexandre Derumier (talk | contribs) (Created page with "{{Note|Article about Proxmox VE 2.0}} To enable PCI passthrough, you need to configure: ==INTEL== <br> edit: <source lang="bash"> #vi /etc/default/grub </source> change <so…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Yellowpin.svg Note: Article about Proxmox VE 2.0

To enable PCI passthrough, you need to configure:

INTEL


edit:

#vi /etc/default/grub

change

GRUB_CMDLINE_LINUX_DEFAULT="quiet"

to

GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on"

then

# update-grub
# reboot

AMD

edit:

#vi /etc/default/grub

change

GRUB_CMDLINE_LINUX_DEFAULT="quiet"

to

GRUB_CMDLINE_LINUX_DEFAULT="quiet iommu=pt iommu=1"

then

# update-grub
# echo "options kvm allow_unsafe_assigned_interrupts=1" > /etc/modprobe.d/kvm_iommu_map_guest.conf 
# reboot