i845gl/液晶显示器 配置的问题

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

i845gl/液晶显示器 配置的问题

#1

帖子 jcadam » 2005-06-07 13:57

安装X系统已经成功,但是似乎驱动程序的能力有限,我的windows系统的最高刷新率是60,但是ubuntu自动选择了75hz,以至于我的系统只能使用800*600分辨率16位色深。我是否需要更新驱动程序才能解决这个问题?有没有其他方法?
此外,我按照主站上文档提供的方法,并没有解决从问题。看了oneleaf兄弟的文章也没能搞定,实在是惭愧的很。
这里是我的系统的一些信息。

代码: 全选

$sudo xresprobe vga
 id: IBM9512 T541
res: 1024x768 832x624 800x600 720x400 640x480
freq: 30-61 56-75
disptype: crt
# 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
[/code]

xorg.conf 的内容如下:

代码: 全选

# /etc/X11/xorg.conf (xorg 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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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 commands:
#
#   cp /etc/X11/xorg.conf /etc/X11/xorg.conf.custom
#   sudo sh -c 'md5sum /etc/X11/xorg.conf >/var/lib/xfree86/xorg.conf.md5sum'
#   sudo dpkg-reconfigure xserver-xorg

Section "Files"
	FontPath	"unix/:7100"			# local font server
	# if the local font server has problems, we can fall back on these
	FontPath	"/usr/lib/X11/fonts/misc"
	FontPath	"/usr/lib/X11/fonts/cyrillic"
	FontPath	"/usr/lib/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/Type1"
	FontPath	"/usr/lib/X11/fonts/CID"
	FontPath	"/usr/lib/X11/fonts/100dpi"
	FontPath	"/usr/lib/X11/fonts/75dpi"
        # paths to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
	Load	"bitmap"
	Load	"dbe"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"record"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"true"
	Option		"ZAxisMapping"		"4 5"
EndSection

Section "Device"
	Identifier	"Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
	Driver		"i810"
	BusID		"PCI:0:2:0"
EndSection

Section "Monitor"
	Identifier	"IBM9512 T541"
	Option		"DPMS"
	HorizSync	30-61
	VertRefresh	56-75
	# 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

EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
	Monitor		"IBM9512 T541"
	DefaultDepth	8
	SubSection "Display"
		Depth		1
		Modes		"1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
EndSection

Section "DRI"
	Mode	0666
EndSection
新手初来札到还请各位高手多多指教。
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#2

帖子 jcadam » 2005-06-07 14:08

在ubuntu中怎样更改屏幕刷新率?
能否将屏幕刷新律更改到低水平,解决此问题?
谢谢。
yongyi
帖子: 3025
注册时间: 2005-05-07 23:57
联系:

#3

帖子 yongyi » 2005-06-07 14:27

独自看一看大海
总想起身边走在路上的朋友
Lenovo E290-420[Celeron-M420/256M/60G/Intel GMA950]
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#4

帖子 jcadam » 2005-06-07 14:48

yongyi 写了:看这个有没有帮助?
http://www.linuxsir.org/bbs/showthread.php?t=202539
首先感谢。但是没能解决问题阿,5~ 怎么办?
从intel的网站下载了驱动程序,准备编译内核了, :?
但是内核源码包怎样得到?
我的内核版本是

代码: 全选

uname -a
Linux Coral 2.6.10-5-686 #1 Fri May 20 14:31:01 UTC 2005 i686 GNU/Linux
用apt-get install kernel-source
得到似乎是2.4内核的源码,5~,初用类debian系统,实在太菜,大虾救我阿
头像
oneleaf
论坛管理员
帖子: 10455
注册时间: 2005-03-27 0:06
系统: Ubuntu 12.04

#5

帖子 oneleaf » 2005-06-07 15:20

当净其意如虚空,远离妄想及诸取,令心所向皆无碍
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#6

帖子 jcadam » 2005-06-07 15:33

jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#7

帖子 jcadam » 2005-06-07 15:47

虽然编译内核是一定可疑解决问题的,但是,为一个驱动程序就大费周折似乎有些不值,有没有更好的解决方法?
1, 有没有方法可疑降低屏幕分辨率?
2, intel提供了rpm的二进制包安装驱动,请问在ubuntu中如何使用rpm?debian是可以使用rpm的吧.
非常感谢!
头像
oneleaf
论坛管理员
帖子: 10455
注册时间: 2005-03-27 0:06
系统: Ubuntu 12.04

#8

帖子 oneleaf » 2005-06-07 16:43

1:降低分辨率的最简单办法是,修改

Modes "1024x768" "832x624" "800x600" "720x400" "640x480"

删除不要的分辨率

2:使用 alien 命令 将 rpm 转为 deb。再安装。
当净其意如虚空,远离妄想及诸取,令心所向皆无碍
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#9

帖子 jcadam » 2005-06-07 16:54

oneleaf 写了:1:降低分辨率的最简单办法是,修改

Modes "1024x768" "832x624" "800x600" "720x400" "640x480"

删除不要的分辨率

2:使用 alien 命令 将 rpm 转为 deb。再安装。
:D 以前一直在用WhiteBox,类似RedHat的系统,今天尝试使用了ubuntu,感觉非常棒,除了这个小小的问题以外.
有几点给我印象最深刻,
1, 不能直接使用root帐户,而采用了admin组这样的方法,提高了系统安全性
2, 安装光盘提供了最基本的软件包, 而不是像我以前使用过的debian,安装光盘或者软盘只有基系统,方便初级用户使用.
虽然是两个很小的地方,但是足见ubuntu作的很细心.支持ubuntu!愿她发展的更快,更好.

呵呵~,提问最后一个问题. 屏幕的刷新率能够用什么方法调整吗?我想从75Hz调整到60Hz.

谢谢 oneleaf ,谢谢以上各位的帮助.
头像
oneleaf
论坛管理员
帖子: 10455
注册时间: 2005-03-27 0:06
系统: Ubuntu 12.04

#10

帖子 oneleaf » 2005-06-07 16:57

将:

HorizSync 30-61
VertRefresh 56-75
# 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

改为:

HorizSync 0-0
VertRefresh 0-0


试试
当净其意如虚空,远离妄想及诸取,令心所向皆无碍
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#11

帖子 jcadam » 2005-06-07 17:42

oneleaf 写了:将:

HorizSync 30-61
VertRefresh 56-75
# 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

改为:

HorizSync 0-0
VertRefresh 0-0


试试
:cry: no use.
屏幕的刷新律怎样调?75Hz-60Hz
看来真的只有编译内核了~
头像
oneleaf
论坛管理员
帖子: 10455
注册时间: 2005-03-27 0:06
系统: Ubuntu 12.04

#12

帖子 oneleaf » 2005-06-07 17:52

使用

HorizSync 0-0
VertRefresh 0-0

再直接将 DefaultDepth 8 改为 DefaultDepth 16 不行吗?
当净其意如虚空,远离妄想及诸取,令心所向皆无碍
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#13

帖子 jcadam » 2005-06-07 18:38

oneleaf 写了:使用

HorizSync 0-0
VertRefresh 0-0

再直接将 DefaultDepth 8 改为 DefaultDepth 16 不行吗?
恩,就是这样,但是没起作用。
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#14

帖子 jcadam » 2005-06-07 18:40

当使用8位色深的时候是1024*768,而且“首选项”里面可以有很多选项,但是16色就没有,只能使用“800*600”,“首选项”里也只有800*600 :cry:
jcadam
帖子: 31
注册时间: 2005-06-06 5:26

#15

帖子 jcadam » 2005-06-07 19:18

查看了硬件支持文档,发现其中有这样的话

-----------------------------------
Make |Model | Chipset/Driver |Auto-detected |2D |3D |Comments |Release
intel |Onboard i845G | |Yes |Yes | |Yes |If it only use 640x480 change in the BIOS shared Video Memoory from only 1MB to 8M
这意味这什么?难道只有当共享部分内存作显存时,才能调节?
回复