|
|
发表于 2006-11-7 20:05:32
|
显示全部楼层
我说一下我的设置过程,笔记本电脑是DELL的,显卡是主板集成的,intel 945芯片组
安装855resolution
实际上安装的是 915resolution
915resolution -l 显示目前支持的分辨率,发现根本没有 1280x800
于是参考网上的解答
找了一个640x480的:
Mode 41 : 640x480, 16 bits/pixel
915resolution -l 依据实际的电脑不同
将上面的那个MODE修改为我想用的,因为我绝不会使用640x480的分辨率的。
915resolution 41 1280x800 16
然后修改xorg.conf
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 32
Modes "1280x800"
EndSubSection
这样,再启动X就正常使用1280x800的分辨率了。
想在启动的时候就生效,就在/etc/default/915resolution中设置一下
MODE=41
#
# and set resolutions for the mode.
# e.g. use XRESO=1024 and YRESO=768
XRESO=1280
YRESO=800
#
# We can also set the pixel mode.
# e.g. use BIT=32
# Please note that this is optional,
# you can also leave this value blank.
BIT=16 |
|