我正在以无头模式运行 Ubuntu,并希望远程显示桌面。我找到了 X Windows Dummy 驱动程序的配置并使用了以下内容:
/etc/X11/xorg.conf.d# more dummy.conf
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080"
EndSubSection
EndSection
不幸的是,我的屏幕分辨率只有 1360x768,有人能解释一下我哪里做错了吗?