我正在尝试设置一个分辨率为 2560x1440 的外接显示器,配有 ATI FirePro V3700 显卡。输出如下lspci | grep VGA
:
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV620 GL [FirePro V3700]
安装 Ubuntu 17.10 后,当前分辨率为 1920x1440,我无法通过将其更改Settings -> Devices -> Displays
为使用最大分辨率 2560x1440。
我假设显卡驱动程序Radeon, 来自官方文档。我也尝试创建一个/etc/X11/xorg.conf
,但似乎这个配置没有被加载,因为它没有效果。该文件的内容如下:
Section "Device"
Identifier "AMD Radeon FirePro V3700"
Driver "radeon"
EndSection
Section "Monitor"
Identifier "Lenovo ThinkVision P24H"
HorizSync 30.0-62.0
VertRefresh 50.0-70.0
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "2560x1440" "1920x1200" "1920x1080"
EndSubSection
EndSection
从显卡技术规格我看到这张卡最大可以输出 2560x1600。有人能帮我吗?谢谢。