如何在 Lubuntu 中更改分辨率?(使用 xrandr)

如何在 Lubuntu 中更改分辨率?(使用 xrandr)

我需要帮助来改变我的决心。

我在 Lubuntu(最新版本)上运行,但我不知道如何更改分辨率。我知道进入Menu>Preferences>Monitor设置,但最大值是640x480,我想使用1280x1024

更改分辨率的选项与从 Nvidia 显卡驱动程序更改为 Nouveau X.Org 驱动程序不同。所以请问有人能帮忙吗?非常感谢!

输出xrandr

xrandr: Failed to get size of gamma for output default
Screen 0: minimum 320 x 240, current 640 x 480, maximum 640 x 480
default connected 640x480+0+0 0mm x 0mm
   640x480        50.0* 
   320x240        51.0  
  1280x1024_60.00 (0x1bb)  109.0MHz
        h: width  1280 start 1368 end 1496 total 1712 skew    0 clock   63.7KHz
        v: height 1024 start 1027 end 1034 total 1063           clock   59.9Hz

答案1

首先运行命令

xrandr|grep ' connected'

你会看到类似

VGA1 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 376mm x 301mm

根据上面的输出,您必须注意 1.screen 名称(即上例中的 VGA1)。现在运行命令

xrandr --output VGA1 --mode 1280x1024

VGA1用输出中的一个替换。

编辑:对于单屏计算机,上述命令可以用以下单个命令替换。

xrandr --output $(xrandr|grep ' connected'|awk '{print $1}') --mode 1280x1024

相关内容