无法在 Debian 10 (Thinkpad X220) 上的 VGA 转 HDMI 适配器上将分辨率设置为 1080

无法在 Debian 10 (Thinkpad X220) 上的 VGA 转 HDMI 适配器上将分辨率设置为 1080

我试过这个:

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.conf按照 ArchWiki。然而,那个帮助我的人却消失了。

还有这个:当“显示设置”中没有可用分辨率时,如何使用 xrandr 设置自定义分辨率

以上均无效。

使用arandr,我看到最大可用分辨率是1024x768,考虑到“手册”说它可以支持高达1080p 60Hz,这正是我想要的,这很奇怪。

介意帮我一下吗?

答案1

在 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 适配器可能不支持此模式,无论手册如何规定。

相关内容