centos 7 修改系統螢幕解析度
阿新 • • 發佈:2018-11-03
centos 7 修改系統螢幕解析度,命令方式和圖形方式的修改方法。
命令:xrandr
通過命令 xrandr 修改系統的解析度,輸入xrandr:
bash
- [[email protected] ~]$ xrandr
- Screen 0: minimum 1 x 1, current 1366 x 768, maximum 4096 x 4096
- Virtual1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
- 1366x768 60.00*+
- 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
- 800x600 60.32
- 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命令後可以看到系統的一些解析度的列表,和當前系統螢幕的解析度資訊,可以通過命令的相應引數對系統解析度的一些設定操作。
自動適應當前顯示卡解析度(全屏)
bash
- xrandr -s 0 //0也代表是上面解析度列表中的第一個解析度
其他解析度設定可以根據上面列表中從0開始的對應編號就能設定其他解析度了。
bash
- xrandr -s 17 //800x600
- xrandr -s 18 //640x480
指定解析度設定
bash
- xrandr -s 1366x768