我最近在闪存驱动器上安装了 Ubuntu,并设置了两个显示器,一个 21:9 屏幕和一个 16:9。21:9 屏幕设置得很好,但是,在我的设置菜单中,我可以为 16:9 显示器选择的最大分辨率是 1600x900,尽管它是 1920x1080 显示器。在终端中,我运行了:
$ xrandr -q
Screen 0: minimum 8 x 8, current 2560 x 1980, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 connected primary 2560x1080+0+900 (normal left inverted right x axis y axis) 798mm x 334mm
2560x1080 60.00*+
1920x1080 60.00 59.94 50.00 29.97 60.05 60.00 50.04
1680x1050 59.95
1600x900 60.00
1280x1024 75.02 60.02
1280x720 60.00 59.94 50.00
1152x864 75.00
1024x768 75.03 60.00
800x600 75.00 60.32
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DVI-D-0 connected 1600x900+418+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.00 +
1600x900 59.82*
1400x900 59.88
1368x768 59.88 59.85
1360x768 59.96 59.80
1280x800 59.91 59.81
1280x720 59.86 59.74
1152x864 60.00
1024x576 59.90 59.82
960x540 59.82 59.63
864x486 59.92 59.57
800x600 72.19 60.32 56.25
800x450 59.82
700x450 59.88
684x384 59.88 59.85
680x384 59.96 59.80
640x480 59.94
640x400 59.98 59.88
640x360 59.86 59.83
512x384 60.00
512x288 60.00 59.92
480x270 59.82 59.63
432x243 59.92 59.57
400x300 72.19
320x240 60.05
而且似乎不允许我选择 1920x1080。这有什么原因吗?作为参考,我使用的是 GTX 970 GPU。谢谢。
答案1
使用 NVidia 服务器设置,我可以管理 GTX 760 上的屏幕。应用程序创建的 Xorg conf 被复制到 /etc/X11/xorg.conf.d/my.conf:
当然,这只有在应用程序正确检测到您的显示器时才有意义。否则,您需要添加缺少的 EDID 信息。这是一种尝试分辨率是否有效的方法:
xrandr --output DVI-D-0 --mode 1920x1080 --rate 60
如果这不起作用并且 Nvidia 服务器设置无法识别您的显示器尺寸,您可能必须将其添加到上面提到的“my.conf”文件中:(改变决议——这只是一个例子!)
Section "Monitor"
Identifier "External DVI"
Modeline "1280x1024_60.00" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -HSync +Vsync
Option "PreferredMode" "1280x1024_60.00"
EndSection
重启。如果出现问题,只需删除该配置文件并重新启动 - 则不会造成任何损害。