x200在ubuntu 8.10下不能显示正常分辨率,怎么办?
不知道各位用x200装ubuntu 8.10的兄弟有没有同样的问题?我的机器只能显示1024*768的普屏分辨率,不能显示正常的宽屏分辨率。
xorg.conf文件好像也缺少很多东西?
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Device"
Identifier "Configured Video Device"
Option "UseFBDev" "true"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
请问这是不是无法识别显示器的问题,x200的显示器型号是LEN4010,但找了半天也找不到垂直,水平扫描率。。。 驱动没装好??? 不知道是不是驱动问题,系统自动装的是xorg-video-intel 2.24,我现在能选1280*800不过屏幕大于1024*768部分不能用。。。 在Ubuntu8.10中,默认的xorg.conf的设置不能很好的工作,默认的设置为 1074x768,但x200标准显示为1280x800,在系统中也不能很好设置 系统 -> 首选项 -> 屏幕分辨率中设置不能很好的设置.
设置的方法我更新了很多次,然后这是最后一次,首先你要确认你的系统中有安装intel的驱动。
$ sudo apt-get install xserver-xorg-video-intel
然后使用gedit来设置xorg.conf.
$ sudo gedit /etc/X11/xorg.conf
然后加入下面的部分
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Monitor"
Identifier "HDMI-1"
Option "Ignore" "True"
EndSection
Section "Monitor"
Identifier "HDMI-2"
Option "Ignore" "True"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Modes "1280x800" "1024x768"
# The following line was an auto-configuration added by an external VGA projector; you might leave it out to try
# letting the system detect dimensions appropriate for whatever display you happen to use.
Virtual 2432 864
EndSubSection
EndSection
Section "Device"
Identifier "Configured Video Device"
Driver "intel"
Option "monitor-HDMI-1" "HDMI-1"
Option "monitor-HDMI-2" "HDMI-2"
EndSection
然后保存关掉gedit.基本就行了。好象不是因为驱动的原因,是因为HDMI的原因.然后在重起你的xwindows就行了,有可能还要到系统 -> 首选项 -> 屏幕分辨率 中重新选择一下.
http://rocry.blogspot.com/2009/01/ubuntu-810-version-1109.html
页:
[1]