t43 高分屏怎么在显示设置里最高只有1024*768

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
waterloo2005
帖子: 362
注册时间: 2007-01-15 20:53

t43 高分屏怎么在显示设置里最高只有1024*768

#1

帖子 waterloo2005 » 2007-01-19 15:37

如题,不知怎么的原来可以选1400*1050的,现在这个选项没有了
H2o0
帖子: 6
注册时间: 2007-01-10 18:17

#2

帖子 H2o0 » 2007-01-20 2:14

修改/etc/X11/xorg.conf文件,DefaultDepth是你现在使用的显示模式修改相应的参数,比如说我的

代码: 全选

Section "Screen"
	Identifier "Default Screen"
	Device     "Generic Video Card"
	Monitor    "Generic Monitor"
	DefaultDepth     24
	SubSection "Display"
		Depth     1
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth     4
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth     8
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth     15
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth     16
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth     24
		Modes    "1400x1050 1024x768" "800x600" "640x480"
	EndSubSection
EndSection
在SubSection "Display" Depth 24的Modes里面添加1400x1050,保存重起就OK了[/code]
回复