求助 Debian5 显示器超出范围

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

求助 Debian5 显示器超出范围

#1

帖子 六翼拉菲尔 » 2009-11-06 23:11

我在机器上面安装了Debian5 显卡是4850 显示器是17英寸CRT 启动到gdm的时候提示我超出显示范围
这是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.
#
# 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 "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
	Option		"HorizSync"	"90.0"  //这里是按照网上找的方法改的,可惜没偶效果
	Option		"VertRefresh"	"60"     //这里同上
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
EndSection
头像
czjl
帖子: 765
注册时间: 2008-07-28 10:02

Re: 求助 Debian5 显示器超出范围

#2

帖子 czjl » 2009-11-06 23:21

3)登录界面分辨率
Section “Screen”
…………....
SubSection “Display”
Virtual 1024 768
Modes “1024x768@60”
EndSubSection

红色部分是增加的内容,分辨率自己写合适的。
六翼拉菲尔
帖子: 163
注册时间: 2007-05-12 0:05

Re: 求助 Debian5 显示器超出范围

#3

帖子 六翼拉菲尔 » 2009-11-07 15:19

czjl 写了:3)登录界面分辨率
Section “Screen”
…………....
SubSection “Display”
Virtual 1024 768
Modes “1024x768@60”
EndSubSection

红色部分是增加的内容,分辨率自己写合适的。
那关于横向和纵向刷新率还要不要保留?
头像
czjl
帖子: 765
注册时间: 2008-07-28 10:02

Re: 求助 Debian5 显示器超出范围

#4

帖子 czjl » 2009-11-07 15:44

六翼拉菲尔 写了:那关于横向和纵向刷新率还要不要保留?
先改那个,如果不行,给你一个更全的,仅供参考:
B。如果系统没有驱动,分辨率只有800x600不能改变,不要求特效,就按照以下方法修改:
$ sudo gedit /etc/X11/xorg.conf
修改 Section “monitor” 内容如下
Identifier “****” 此项默认
VendorName “ Unknow” 此项随便
ModelName “ Unknow” 此项随便
HorizSync 行频(水平扫描) #根据显示器填写,重要
VertRefresh 场频(垂直扫描) #根据显示器填写,重要
Option “DPMS”
Modeline “1024x768@60”.…… #很重要,可计算标准参数如下:
终端输入: gtf 1024 768 60
得到 # 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz
Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync
将结果中的 modeline (Modeline "1024x768@60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync) 填入就ok了。
3)登录界面分辨率
Section “Screen”
…………....
SubSection “Display”
Virtual 1024 768
Modes “1024x768@60”
EndSubSection
回复