合 Centos 7 修改系统屏幕分辨率
centos 7 修改系统屏幕分辨率,命令方式和图形方式的修改方法。
命令方式
通过命令 xrandr 修改系统的分辨率,输入xrandr:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | [root@docker36 ~]# xrandr Screen 0: minimum 1 x 1, current 1280 x 960, maximum 4096 x 4096 Virtual1 connected primary 1280x960+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 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) |
输入xrandr命令后可以看到系统的一些分辨率的列表,和当前系统屏幕的分辨率信息,可以通过命令的相应参数对系统分辨率的一些设置操作。
1 2 | xrandr -s 10 (10表示第11行分辨率。从0行开始算) |
将当前分辨率设置为指定的分辨率:
1 | xrandr -s 1440x900 |