分页: 1 / 1

[问题]屏幕分辨率

发表于 : 2008-07-19 12:20
liuyikun
卸载显卡驱动后,再进入Xwindow,分辨率就只能达到800X600了,如何调到1024X768,75HZ?

发表于 : 2008-07-19 12:30
jayscorpio
再装显卡驱动……

发表于 : 2008-07-21 12:17
liuyikun
再装显卡驱动……
问题是,一装显卡驱动,显卡就没信号输出,但xwindow是启动了(gdm登陆声音都听到了,就是显示屏亮黄灯)
我的是N卡的。

发表于 : 2008-07-21 12:23
yysq009
分辨率 可以在 xorg里面 设置。
文件具体位置 /etc/X11/xorg.conf
PS: 修改前 做好 备份

代码: 全选

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	DefaultColorDepth 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 "1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth     32
		Modes "1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection
具体的就是xorg的这个 段 了。
DefaultColorDepth 24 是你默认的 X 的颜色深度
那么对应的
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
分辨率 并且 第一个是优先的。

还一个 你的可能是 显示器的 扫描频率超过了范围
在 monitor 段中 有
HorizSync 28.0 - 96.0
VertRefresh 50.0 - 75.0
一个是 行频率 一个是刷新率 根据自己显示器 调整。

发表于 : 2008-07-21 12:29
liuyikun
谢谢楼上,待会试试。