1. 程式人生 > >centos 7 修改系統螢幕解析度

centos 7 修改系統螢幕解析度

   centos 7 修改系統螢幕解析度,命令方式和圖形方式的修改方法。

命令:xrandr

        通過命令 xrandr 修改系統的解析度,輸入xrandr:

bash
  1. [[email protected] ~]$ xrandr
  2. Screen 0: minimum 1 x 1, current 1366 x 768, maximum 4096 x 4096
  3. Virtual1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
  4.    1366x768      60.00*+
  5.    2560x1600     59.99  
  6.    1920x1440     60.00  
  7.    1856x1392     60.00  
  8.    1792x1344     60.00  
  9.    1920x1200     59.88  
  10.    1600x1200     60.00  
  11.    1680x1050     59.95  
  12.    1400x1050     59.98  
  13.    1280x1024     60.02  
  14.    1440x900      59.89  
  15.    1280x960      60.00  
  16.    1360x768      60.02  
  17.    1280x800      59.81  
  18.    1152x864      75.00  
  19.    1280x768      59.87  
  20.    1024x768      60.00  
  21.    800x600       60.32  
  22.    640x480       59.94  
  23. Virtual2 disconnected (normal left inverted right x axis y axis)
  24. Virtual3 disconnected (normal left inverted right x axis y axis)
  25. Virtual4 disconnected (normal left inverted right x axis y axis)
  26. Virtual5 disconnected (normal left inverted right x axis y axis)
  27. Virtual6 disconnected (normal left inverted right x axis y axis)
  28. Virtual7 disconnected (normal left inverted right x axis y axis)
  29. Virtual8 disconnected (normal left inverted right x axis y axis)

        輸入xrandr命令後可以看到系統的一些解析度的列表,和當前系統螢幕的解析度資訊,可以通過命令的相應引數對系統解析度的一些設定操作。

 

        自動適應當前顯示卡解析度(全屏)

bash
  1. xrandr -0  //0也代表是上面解析度列表中的第一個解析度

        其他解析度設定可以根據上面列表中從0開始的對應編號就能設定其他解析度了。

bash
  1. xrandr -17   //800x600
  2. xrandr -18   //640x480

        指定解析度設定

bash
  1. xrandr -1366x768