由于11.10版本中没有了/etc/X11/xorg.conf文件,如果想临时改变分辨率可以采用xrandr命令。例如修改分辨率为85,则可用xrandr -r 85。
也可以手动添加/etc/X11/xorg.conf文件。不过比较好的办法是使用命令生成
在关掉lightdm之后,使用Xorg -configure 命令生成xorg.conf.new。然后采用gtf 1024 768 85 -x生成配置。
# 1024x768 @ 85.00 Hz (GTF) hsync: 68.60 kHz; pclk: 94.39 MHz
Modeline "1024x768_85.00" 94.39 1024 1088 1200 1376 768 769 772 807 -HSync +Vsync
将生成的配置添加进xorg.conf.new的Section “Monitor"中。如下:
Section "Monitor"
Identifier "Monitor2"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
Modeline "1024x768_85.00" 94.39 1024 1088 1200 1376 768 769 772 807 -HSync +Vsync
EndSection
然后mv xorg.conf.new /etc/X11/xorg.conf。
再启动X即可。