Debian

無法在 Debian 10 (Thinkpad X220) 上的 VGA 到 HDMI 適配器上將解析度設置為 1080

  • October 20, 2020

我試過這個:

https://wiki.archlinux.org/index.php/xrandr#Permanently_adding_undetected_resolutions

在這裡,Debian IRC 頻道建議我將配置文件的路徑更改為:/etc/X11/xorg.conf.d而不是/etc/X11/xorg.conf.d/10-monitor.confArchWiki。然而,幫助我的人消失了。

還有這個:當“顯示設置”中的解析度不可用時,如何使用 xrandr 設置自定義解析度

以上都沒有奏效。

使用 arandr 代替我看到最大可用解析度是 1024x768,考慮到“手冊”說它可以支持高達 1080p 60Hz 這是我想要的,這很奇怪。

介意幫我嗎?

在 Debian 中,包含xorg.conf文件的預設目錄確實是/usr/share/X11/xorg.conf.d/. 這將是放置自定義 X 設置的正確位置。

這是強制執行特定解析度所需的配置文件(並且沒有其他可供選擇!)。保存/usr/share/X11/xorg.conf.d/10-monitor.conf並重新啟動。請注意,我使用命令生成了模式行cvt 1280 1080

Section "Monitor"
   Identifier "VGA1"
   Modeline "1280x1080_60.00"  115.00  1280 1368 1496 1712  1080 1083 1093 1120 -hsync +vsync
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Device0"
   Monitor    "VGA1"
   SubSection "Display" 
       Modes  "1280x1080_60.00" 
   EndSubSection 
EndSection

Section "Device"
   Identifier "Device0"
   Driver "intel"
EndSection

如果這仍然不起作用,那麼您的 VGA 適配器可能不支持此模式,儘管手冊上說了什麼。

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