如何使用假显示器提高无头系统的分辨率?

如何使用假显示器提高无头系统的分辨率?

请注意,这个问题尚未得到解答,我已经阅读了所有内容,但似乎没有一个对我有用。

我有一个无头系统 Ubuntu 20.04,带有 Advanced Micro Devices, Inc. [AMD/ATI] Richland [Radeon HD 8570D]

我已经安装了

sudo apt-get install xserver-xorg-video-dummy

修改了xorg.conf

我只能使用 1360x768 的最大分辨率

关于如何获得更高的分辨率有什么想法吗?

答案1

安装后xserver-xorg-视频-虚拟服务器使用命令

sudo apt install -y xserver-xorg-video-dummy

将高分辨率配置粘贴到文件中20-dummy.conf

sudo cat > /usr/share/X11/xorg.conf.d/20-dummy.conf

以下内容:

Section "Device"
    Identifier "DummyDevice"
    Driver "dummy"
    VideoRam 1024000
EndSection

Section "Screen"
    Identifier "DummyScreen"
    Device "DummyDevice"
    Monitor "DummyMonitor"
    DefaultDepth 24
    SubSection "Display"
        Depth 24
        Modes "2560x1440_60.0"
    EndSubSection
EndSection

Section "Monitor"
    Identifier "DummyMonitor"
    HorizSync 30-200
    VertRefresh 50-1000
    Modeline "2560x1440_60.00"  312.25  2560 2752 3024 3488  1440 1443 1448 1493 -hsync +vsync
EndSection

如果您需要其他解决方案,请致电计算 VESA CVT 模式线

cvt 2048 1440

然后将 cvt 2048 1440 生成的字符串复制到20-dummy.conf文件

# 2048x1440 59.97 Hz (CVT) hsync: 89.53 kHz; pclk: 249.25 MHz
Modeline "2048x1440_60.00"  249.25  2048 2200 2416 2784  1440 1443 1453 1493 -hsync +vsync

更新相同的解析模式名称“2048x1440_60.00”在里面“显示”子部分

然后重启

相关内容