如何在 Ubuntu 中更改登录分辨率?

Nat*_*man 3 resolution ubuntu-9.10 ubuntu

如何在 Ubuntu 9.10 (Karmic) 中更改登录屏幕的分辨率?

编辑:请记住,我需要更改登录屏幕的分辨率,如下所述。

Jus*_*n S 5

我相信您需要配置您的 xorg.conf 以包含正确的模式。

编辑 /etc/X11/xorg.conf

Section "Screen"
    Identifier  "Default Screen"
    Device      "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Monitor     "17P3"
    DefaultDepth    24

    [...]

    SubSection "Display"
        Depth       24
        Modes       "1024x768" "1280x960" "640x480" "800x600"
    EndSubSection
EndSection
Run Code Online (Sandbox Code Playgroud)

其中第一个 Mode 是默认分辨率。

如果你有 ATI 卡,你也可以试试这个。

sudo aticonfig --resolution=0,1280x1024,1024x768,800x600
Run Code Online (Sandbox Code Playgroud)

其中 0 是第一个屏幕,分辨率按优先顺序排列。

尝试将此作为小节添加到 xorg.conf 中的“屏幕”部分

SubSection "Display"
        Virtual 1280 800
EndSubSection
Run Code Online (Sandbox Code Playgroud)