我使用以下设置:
- AMD RX 5700 XT GPU
- 两个 AOC G2460PG 显示端口。
- Ubuntu 20.04。
我安装了官方驱动包。
分辨率仍然很低。我该如何解决这个问题?
编辑1
当我尝试使用 添加缺失的分辨率时xrandr
,屏幕变为空白。
答案1
我找到了一个解决方案。
以下是您显示的模式行:
Detailed timing #1....... 1920x1080p at 85Hz (16:9)
Modeline............... "1920x1080" 198,500 1920 1968 2000 2080 1080
1083 1088 1124 +hsync -vsync
Detailed timing #2....... 1920x1080p at 100Hz (16:9)
Modeline............... "1920x1080" 235,500 1920 1968 2000 2080 1080 1083 1088 1133 +hsync -vsync
Detailed timing #3....... 1920x1080p at 120Hz (16:9)
Modeline............... "1920x1080" 285,500 1920 1968 2000 2080 1080 1083 1088 1144 +hsync -vsync
Detailed timing #4....... 1920x1080p at 144Hz (16:9)
Modeline............... "1920x1080" 325,080 1920 1944 1976 2056 1080 1083 1088 1098 +hsync +vsync
使用以下命令检查它们是否有效:
xrandr --newmode "1920x1080_85.00" 198.500 1920 1968 2000 2080 1080 1083 1088 1124 +Hsync -Vsync xrandr --addmode DisplayPort-0 "1920x1080_85.00" xrandr --output DisplayPort-0 --mode "1920x1080_85.00"
如果它们有效,请执行以下
20-monitor.conf
操作/usr/share/X11/xorg.conf.d
:Section "Monitor" Identifier "Displayport-0" Modeline "1920x1080_85.00" 198.500 1920 1968 2000 2080 1080 1083 1088 1124 +hsync -vsync Option "PreferredMode" "1920x1080_85.00" EndSection Section "Screen" Identifier "Screen0" Monitor "Displayport-0" DefaultDepth 24 SubSection "Display" Modes "1920x1080_85.00" EndSubSection EndSection Section "Device" Identifier "Device0" Driver "amdgpu" EndSection
这应该可以解决你的问题。