Ubuntu 显示分辨率不正确的修正

Ubuntu 安装后,显示的分辨率是1280x768, 不协调特别难受。

 

原来是 x server没有自动把显卡识别出来。

 

#lspci

显卡型号是

Intel Corporation 82Q963/Q965 Integrated Graphics Controller

 

打开 /etc/X11/xorg.conf

修改Section "Device" "Monitor" 以及"Screen", 其中红色部分为添加的内容

 

Section "Device"
           Identifier "Configured Video Device"
           Driver  "i810"
           BusID  "PCI:0:2:0"

EndSection

Section "Monitor"
           Identifier "Configured Monitor"
           HorizSync 30-65
           VertRefresh 50-75
EndSection

Section "Screen"
          Identifier "Default Screen"
          Monitor  "Configured Monitor"
          Device  "Configured Video Device"
          DefaultDepth 24
          SubSection "Display"
                Depth  24
                Modes  "1280x1024" "1024x768" "800x600" "640x480"
          EndSubSection
EndSection

 

接着重启x server

# sudo /etc/init.d/gdm restart  <-- 或者 Ctrl + Alt + Backspace

 

分辨率自动调整为1280x1024 啦 

 

你可能感兴趣的:(server,ubuntu,video)