Ubuntu 虚拟显示比例

Ubuntu 虚拟显示比例

我一直在尝试创建一个配置为 16:9 比例分辨率的“虚拟”显示设备,但没有成功。

我已经设置了内核选项(忘记了它是什么),以便 xorg 甚至可以在没有连接到显示端口的物理显示设备的情况下启动。

下面是我的 xorg.conf。我基本上想实现的是 16:9 分辨率,例如 1440x900,而不是此配置显然提供的所有 4:3 分辨率(尽管下面定义了模式和元模式,但我只能选择 4:3 分辨率,例如 1024x768)

非常感谢!Andras

附言:再次重申,我没有物理显示设备。

pigeon@pigeon-desktop:~$ cat /etc/X11/xorg.conf
Section "Device"
Identifier "VNC Device"
Driver "vesa"
EndSection

Section "Screen"
Identifier "VNC Screen"
Device "VNC Device"
Monitor "VNC Monitor"
SubSection "Display"
Modes "1440x900 1440x900@61"
Option "MetaModes" "1440x900,1440x900; 1280x1024,1280x1024; 1024x768,1024x768" 
EndSubSection
EndSection

Section "Monitor"
Modeline "1440x900@61" 111.17 1440 1472 1888 1920 900 918 927 946
Identifier "VNC Monitor"
Option "nodpms"
Option "noddc"
Option "ModeValidation" "NoMaxPClkCheck;NoEdidMaxPClkCheck"
HorizSync 30-85
VertRefresh 48-120
DisplaySize 400 225
EndSection

答案1

听起来你正在尝试运行一台无头服务器机器。如果是这样,这Driver "vesa"似乎是个糟糕的驱动程序选择,因为我甚至不知道 1440x900 是否是有效模式。

您可能需要研究直接 VNC 服务器(例如紧密型VNC服务器客户 ) 或 至少 发布 您 的 客户 的 投诉Xorg.0.log.

相关内容