Ubuntu 更改屏幕分辨率

时间:2023-03-08 15:13:37
Ubuntu 更改屏幕分辨率

  安装完Ubuntu后发现分辨率不合适,平时习惯了看小一点的文字,所以搜了一下修改屏幕分辨率的命令,具体操作如下:

1.先用 xrandr 命令查看一下当前系统支持的分辨率

wayde@wayde-All-Series:~$ xrandr
Screen : minimum x , current x , maximum x
VGA- connected primary 1024x768++ (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768      60.00*
   800x600       60.32    56.25  
   848x480       60.00  
   640x480       59.94  
HDMI- disconnected (normal left inverted right x axis y axis)
HDMI- disconnected (normal left inverted right x axis y axis)

后面带*号的就是你当前的分辨率

2.我这个屏幕之前都是用的1440x900的分辨率,所以用 ctv 命令生成一个详细的分辨率

wayde@wayde-All-Series:~$ cvt
# 1440x900 59.89 Hz (CVT .30MA) hsync: 55.93 kHz; pclk: 106.50 MHz
Modeline "1440x900_60.00"  106.50    -hsync +vsync

3. 接着继续用 xrandr --newmode 命令新建一个分辨率,新建的分辨率就是上述产生的 Modeline 后面的字串

wayde@wayde-All-Series:~$ xrandr --newmode "1440x900_60.00"  106.50           -hsync +vsync

4.将上述新建的分辨率用 xrandr --addmode 命令加入到分辨率列表中

wayde@wayde-All-Series:~$ xrandr --addmode VGA- "1440x900_60.00"

注意后面的60指的是屏幕刷新频率

5.最后用 xrandr --output 命令输出你想要的分辨率

wayde@wayde-All-Series:~$ xrandr --output VGA- --mode "1440x900_60.00"

看似已经成功了,但是当你重启后会发现分辨率又会恢复原样,于是在网上搜了搜,找到了如下方法:

在终端输入命令:

$sudo gedit /etc/X11/xorg.conf

然后粘贴如下脚本并保存

Section "Monitor"
Identifier "Configured Monitor"
Modeline "1024x768_60.00" 63.50 -hsync +vsync
Modeline "1440x900_60.00" 106.50 -hsync +vsync
Option "PreferredMode" "1440x900_60.00"
EndSection Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection Section "Device"
Identifier "Configured Video Device"
EndSection

再次重启就OK了!