Ubuntu18.4 永久修改分辨率(虚拟机)
1. 打开终端(快捷键Ctrl+Alt+T)
2. 查看修改分辨率的信息(1920*1080)
~$ cvt 1920 1080
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
其中Modeline之后对应的就是所需修改的分辨率的信息,后续会用到。
3.查看显示器名称
~$ xrandr
Screen 0: minimum 1 x 1, current 1920 x 1080, maximum 8192 x 8192
Virtual1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
800x600 60.00 + 60.32
2560x1600 59.99
1920x1440 60.00
1856x1392 60.00
1792x1344 60.00
1920x1200 59.88
1600x1200 60.00
1680x1050 59.95
1400x1050 59.98
1280x1024 60.02
1440x900 59.89
1280x960 60.00
1360x768 60.02
1280x800 59.81
1152x864 75.00
1280x768 59.87
1024x768 60.00
640x480 59.94
1920x1080_60.00 59.96*
Virtual2 disconnected (normal left inverted right x axis y axis)
Virtual3 disconnected (normal left inverted right x axis y axis)
Virtual4 disconnected (normal left inverted right x axis y axis)
Virtual5 disconnected (normal left inverted right x axis y axis)
Virtual6 disconnected (normal left inverted right x axis y axis)
Virtual7 disconnected (normal left inverted right x axis y axis)
Virtual8 disconnected (normal left inverted right x axis y axis)
Virtual1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
其中加粗的Vitual1就是当前使用的显示器的名称。
另外,因为当前虚拟机已经修改好了分辨率,所以其中是含有1920*1080的选项的。
4.永久修改分辨率
直接用命令行更改分辨率,在下次重启之后所有设置都会失效,所以需要修改profile文件,才能永久保存。用以下命令打开profile文件。
~$ sudo vim /etc/profile
按“I”进入insert模式,在文件的最后加入以下两行代码:
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 "1920x1080_60.00"
然后按ESC退出insert模式,输入:wq保存,并退出。
这里要注意第一行中的newmode是输入cvt命令之后得到的信息,第二行中的Virtual1是输入xrandr之后得到的显示器名称,要根据实际情况来修改,否则会报错。
然后在命令行中输入
~$ source /etc/profile
重新载入配置文件。
此时就可以在settings->displays->resolution中找到刚才添加的分辨率了,见下图:
修改之后选择apply,分辨率就可以永久改成1920*1080了。