升级到 20.04 并重新安装 ubuntu-desktop 后,英特尔显卡无人认领

升级到 20.04 并重新安装 ubuntu-desktop 后,英特尔显卡无人认领

我从 18.04 更新到 Ubuntu 20.04,一开始启动时遇到了问题(因为我的 /boot 是 vfat,无法更新内核)。而且元包也ubuntu-desktop没有安装,所以我最后设法重新安装了 ubuntu 桌面。

现在我的问题就是英特尔卡无人认领

     sudo LANG=C lshw -C video
      *-display UNCLAIMED       
           description: VGA compatible controller
           product: UHD Graphics
           vendor: Intel Corporation
           physical id: 2
           bus info: pci@0000:00:02.0
           version: 02
           width: 64 bits
           clock: 33MHz
           capabilities: pciexpress msi pm vga_controller bus_master cap_list
           configuration: latency=0
           resources: iomemory:600-5ff iomemory:400-3ff memory:6024000000-6024ffffff memory:4000000000-400fffffff ioport:5000(size=64) memory:c0000-dffff

我怎样才能解决这个问题?

我已经重新安装了英特尔驱动程序

sudo apt-get purge xserver-xorg-video-intel && sudo apt-get install xserver-xorg-video-intel 

我认为上述消息意味着驱动程序未加载?

我该如何进一步调试?

答案1

英特尔卡的驱动程序是 i915。我看到lspci -nnk

Kernel modules: i915

所以我尝试了一下modprobe i915,结果显示了一个关于选项的错误enable_dpcd_backlight

在评论之后

options i915 enable_dpcd_backlight

/etc/modprobe.d/tuxedo-i915.conf

司机好像跑了。

但至少我的主要问题现在已经解决了。

相关内容