from today i have some of ubuntu knowledge

安装 ubuntu 装完以后 调刷新频率 
方法 。首先,确保手上有显示器的相关参数
没有说明书可查的话可以用下面这个命令查看
代码:
sudo ddcprobe | grep monitorrange


2。备份Xorg.conf
代码:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup


3。添加你所需的分辨率和刷新率

代码:
sudo gedit /etc/X11/xorg.conf


a.找到Section "Monitor"
这里,根据你显示器的型号改好,相关的信息可以从网上或者说明书里找到,我的是这样:

Section "Monitor"
Identifier "Sumsang 913N"
Option "DPMS"
HorizSync 30-81
VertRefresh 56-75
(这里我就是手动输入了显示器的型号和两个刷新频率

b.找到下面Section "Screen"
根据需要,我只是改了最后两项SubSection,16位深和24位深:
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
我只是加入了原先没有的1280x1024的分辨率,要是愿意,你也可以改1,4,8,15位色深时的分辩率。保存,然后重启你的Ubuntu,应该就搞定了,还有别忘了按下显示器的AUTO键,让它自动设好最佳效果。

这时候,你会发现桌面的壁纸需要换成1280x1024的,然后,应该没有什么问题了,enjoy it!
~$ sudo dcprobe | grep monitorrange
sudo: dcprobe: command not found

程序 'ddcprobe' 尚未安装. 你可以通过输入下面内容安装:
sudo apt-get install xresprobe

你可能感兴趣的:(职场,ubuntu,休闲,bai)