ubuntu12.04(11.10)下修改刷新频率的方法

Ctrl + Alt + T,
启动终端
运行 xrandr 命令

xrandr


user@ubuntu-desktop:~$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA-0 connected 1024x768+0+0 (normal left inverted right x axis y axis) 310mm x 230mm
   1024x768       85.0 +   75.1*
   1280x1024      60.0
   1152x864       75.0
   800x600        85.1     75.0
   640x480        85.0     75.0     60.0
   720x400        70.1
S-video disconnected (normal left inverted right x axis y axis)
DVI-0 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
屏幕 0:最小分辨率 320x200,当前分辨率 1024x768,最大分辨率 2048x2048
(这里的分辨率是根据不同的显示器而显示不同的数据)
VGA1 显示器1 相关数据 1024x768+0+0 (正常情况下,从左到右,从上到下是 x轴和y轴) 544mm x 32mm(这是相关的尺寸数据)

   分辨率      刷新频率
   1600x1200    60.0
   1280x1024    60.0
   1024x768     85.0*   75.1    70.1    60.0
   800x600      85.1    72.2    75.0    60.3
   640x480      85.0    72.8    75.0    60.0

输入命令:

sudo xrandr --output VGA-0 --mode 1024x768 --rate 75.1

VGA-0,是我的显示器,有些显示器可能会是VGA1 ,可能还会是其他的,在 --output VGA-0 这里,正确填写自己的显示器就可以了。

猜你喜欢

转载自wsfei.iteye.com/blog/1562627