Ubuntu系统设置分辨率

每次开机都要设置分辨率,开始都是用鼠标点的,觉得好麻烦,想可不可以在终端中修改,然后在网上搜,搜到了一种方法,试了不错,立马给改过来了。
现发一帖和大家共享之!
[root@lzf ~]# xrandr(查看当前分辨率和所有分辨率选项)
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 320 x 200, current 1280 x 960, maximum 2560 x 1600
default connected 1280x960+0+0 0mm x 0mm
   1024x768       60.0      0.0                            (这一行是当前分辨率,不算)
   800x600        60.0     56.0      0.0                (这是第一行)
   640x480        60.0      0.0  
   320x240         0.0  
   400x300         0.0  
   512x384         0.0  
   1152x864        0.0  
   1280x960        0.0* 
   1400x1050       0.0  
   1600x1200       0.0  
   1920x1440       0.0  
   2048x1536       0.0  
   854x480         0.0  
   1280x720        0.0  
   1366x768        0.0  
   1920x1080       0.0  
   1280x800        0.0  
   1440x900        0.0  
   1680x1050       0.0  
   1920x1200       0.0  
   2560x1600       0.0  
   720x480         0.0  
   720x576         0.0  
   320x200         0.0  
   640x400         0.0  
   800x480         0.0  
   1280x768        0.0  
   1280x1024       0.0  
然后再在上面数你要设置的分辨率是第几行,比如我要设置1280*960,是在第七行, [root@lzf ~]# xrandr -s 7就这样,设置好了
关于xrandr的更多参数,大家可以 man 一下或者help都可以,以下是我help的。
[root@lzf ~]# xrandr --help
usage: xrandr [options]
  where options are:
  -display  or -d 
  -help
  -o 
            or --orientation 
  -q        or --query
  -s /x or --size /x
  -r  or --rate  or --refresh 
  -v        or --version
  -x        (reflect in x)
  -y        (reflect in y)
  --screen 
  --verbose
  --dryrun
  --nograb
  --prop or --properties
  --fb x
  --fbmm x
  --dpi /
  --output 
      --auto
      --mode 
      --preferred
      --pos x
      --rate  or --refresh 
      --reflect normal,x,y,xy
      --rotate normal,inverted,left,right
      --left-of 
      --right-of 
      --above 
      --below 
      --same-as 
      --set  
      --scale x
      --transform ,,,,,,,,
      --off
      --crtc 
      --panning x[++[/x++[////]]]
      --gamma ::
      --primary
  --noprimary
  --newmode  
               
               
            [+HSync] [-HSync] [+VSync] [-VSync]
  --rmmode 
  --addmode  
  --delmode  

你可能感兴趣的:(linux)