外部显示器分辨率不超过 1024x768

Sha*_*tle 7 display xorg 10.10

我正在尝试使用 24" 外接显示器作为我的华硕 EEE 上网本的主显示器。当我连接它时,它工作正常,除了可用的最大分辨率为 1024x768。通常,我会进入 xorg.conf 并添加它,但 10.10 似乎没有 xorg.conf。我在这里读到另一个问题,我可以简单地进入恢复模式并使用X -configure新的 xorg.conf 并将其移动到 /X11/ 中,但这导致 X 没有甚至开始。我现在将 xorg.conf 重命名为临时名称。

我应该尝试什么?谢谢!

Sha*_*tle 10

类型:

cvt 1280 1024 60
Run Code Online (Sandbox Code Playgroud)

会看到类似的东西:

Modeline "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
Run Code Online (Sandbox Code Playgroud)

除了 Modeline 部分,复制此行

将此复制的文本传递给xrandr --newmode这样的:

xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
Run Code Online (Sandbox Code Playgroud)

将新模式添加到适当的设备(在我的情况下,VGA1。通过 xrandr 找到它)

xrandr --addmode VGA1 "1280x1024_60.00"
Run Code Online (Sandbox Code Playgroud)

您现在将在分辨率选项上看到新的分辨率。

我在这里写了一个更详细的教程:http : //shanereustle.com/blog/force-screen-resolutions-on-ubuntu/