Debian

Debian Buster Coffee Lake 處理器上的螢幕解析度問題

  • October 11, 2018

我的影片驅動程序有問題。我有

  • 處理器:Intel Core i7-8700K CPU @ 3.70 GHz x 6
  • 顯卡:Intel Corporation Device 3e92(prog-if 00

$$ VGA controller $$)

和目前的 Debian Buster 發行版。

# uname -a
Linux tanya 4.14.0-2-amd64 #1 SMP Debian 4.14.7-1 (2017-12-22) x86_64 GNU/Linux

這裡/var/log/Xorg.0.log:

[    10.481] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    10.481] (II) FBDEV: driver for framebuffer: fbdev
[    10.482] (II) VESA: driver for VESA chipsets: vesa
[    10.485] (EE) open /dev/dri/card0: No such file or directory
[    10.485] (WW) Falling back to old probe method for modesetting
[    10.485] (EE) open /dev/dri/card0: No such file or directory

和行:

[    10.486] (**) FBDEV(1): claimed PCI slot 0@0:2:0
[    10.486] (II) FBDEV(1): using default device
[    10.486] (WW) Falling back to old probe method for vesa
[    10.486] (EE) Screen 0 deleted because of no matching config section.

還有這個

# grep EE /var/log/Xorg.0.log
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    10.485] (EE) open /dev/dri/card0: No such file or directory
[    10.485] (EE) open /dev/dri/card0: No such file or directory
[    10.486] (EE) Screen 0 deleted because of no matching config section.
[    10.494] (EE) AIGLX: reverting to software rendering

我沒有 xorg-file,我嘗試從 contrib non-free repository buster 安裝 linux-image-amd64 firmware-misc-nonfree 軟體包,但沒有幫助。

/var/log/kern.log(i915 關鍵字,時間前綴已刪除):

[drm] The driver support for your hardware in this kernel version is alpha quality
See CONFIG_DRM_I915_ALPHA_SUPPORT or i915.alpha_support module parameter
to enable support in this kernel version, or check for kernel updates.
...
snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
snd_hda_intel 0000:00:1f.3: failed to add i915 component master (-19)
...
snd_hda_codec_hdmi hdaudioC0D2: No i915 binding for Intel HDMI/DP codec
snd_hda_codec_hdmi hdaudioC0D2: No i915 binding for Intel HDMI/DP codec

任何幫助,將不勝感激。

謝謝!

核心 4.13 和 4.14 支持 Coffee Lake,但作為 alpha,因此您需要使用以下命令啟動核心

i915.alpha_support=1

您可以通過在引導期間手動編輯核心命令行或通過編輯/etc/default/grub. GRUB_CMDLINE_LINUX_DEFAULT在後一種情況下,update-grub請在重新啟動之前執行…

對於預設啟用 Coffee Lake 支持的核心 4.15,這不是必需的。

我有同樣的問題。甚至擴展桌面也不起作用。只有帶有複製的雙顯示器工作正常。

現在我的雙顯示器可以與擴展桌面一起使用,每個顯示器都具有良好的解析度 1920x1080。

我有:

  • 處理器:Intel Core i5-8400 CPU @ 2.80GHz
  • 顯卡:Intel Corporation Device 3e92
  • 主機板:技嘉Z370 HD3

我的解決方案是:

  • 用 Debian Stretch 重新安裝我的電腦,在安裝過程中為 gnome 和 kde 選擇整個軟體包,以便他們安裝所有必要的圖形軟體包和驅動程序。
  • 安裝完成後,我將該版本的反向埠添加到 /etc/apt/sources.list:deb http://ftp.de.debian.org/debian stretch-backports main
  • 然後安裝核心 4.18 apt-get install linux-image-4.18.0-0.bpo.1-amd64
  • 重新啟動,瞧!我的顯示器使用 kde 以良好的解析度和擴展桌面工作。

看起來 Kernel 4.18 沒有必要向核心啟動或 grub 添加任何參數。它將預設啟用 Coffee Lake 支持。

我希望這對你有用。我在這個問題上苦苦掙扎了幾天;)。

塞薩爾

引用自:https://unix.stackexchange.com/questions/417288