I am running proxmox 8.1 on a HP Z840 with a Nvidia RTX 3070 grapics card and I'm trying to pass through the iGPU to a LXC container. The problem that I'm having is that I cannot see the iGPU on the proxmox host itself. I can only see the Nvidia card but not the Intel iGPU.
It appears like something is wrong because I cannot even find the driver:
modprobe doesn't list it either:
Does the fact that I installed the Nvidia card disable the iGPU? I've read through a bunch of other threads where people seem to be expriencing this same issue but have not been able to find a working solution.
Here is what I have in /etc/default/grub
I have spent over 3 days troubleshooting this but I'm still not sure what else I can check. Is there anyone here that might be able to help?
Code:
# lspci |grep -i vga
07:00.0 VGA compatible controller: NVIDIA Corporation GA104 [GeForce RTX 3070] (rev a1)
#
It appears like something is wrong because I cannot even find the driver:
Code:
# ls -al /dev/dr*
ls: cannot access '/dev/dr*': No such file or directory
#
modprobe doesn't list it either:
Code:
# modprobe i915
#
Does the fact that I installed the Nvidia card disable the iGPU? I've read through a bunch of other threads where people seem to be expriencing this same issue but have not been able to find a working solution.
Here is what I have in /etc/default/grub
Code:
#
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on iommu=pt i915.enable_guc=3 i915.max_vfs=7"
GRUB_CMDLINE_LINUX=""
# If your computer has multiple operating systems installed, then you
# probably want to run os-prober. However, if your computer is a host
# for guest OSes installed via LVM or raw disk devices, running
# os-prober can cause damage to those guest OSes as it mounts
# filesystems to look for things.
#GRUB_DISABLE_OS_PROBER=false
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
I have spent over 3 days troubleshooting this but I'm still not sure what else I can check. Is there anyone here that might be able to help?