[分享]ubuntu9.04和Fedora11下VIA集成显卡驱动不了的进来

CPU/显卡/打印机/USB设备等硬件问题
回复
shada
帖子: 397
注册时间: 2006-09-27 11:17
联系:

[分享]ubuntu9.04和Fedora11下VIA集成显卡驱动不了的进来

#1

帖子 shada » 2009-07-12 16:19

如果没有/etc/X11/xorg.conf文件,则创建,使用以下内容:

代码: 全选

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	#Load	"type1"
	Load	"vbe"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
	Driver	"openchrome"
	BusID 	"PCI:1:0:0"
	Option "VideoRAM" "65536"
	Option "CacheLines" "1980"
	Option		"UseFBDev"		"true"
	Option "UseBIOS" "TRUE"
#	Option "DISPLAY_3DScaling_LCD" "TRUE"
	Option "XaaNoImageWriteRect"
	Option "SWcursor"
	Option "EnableAGPDMA"	"True"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
	Option "DPMS"
	HorizSync 30-85          #这两顶值可以根据你的显示器支持的频率调整。
	VertRefresh 50-160       #
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
	DefaultDepth 16
EndSection

Section "DRI"
	Mode	0666
EndSection
  如果还使用不了,就使用wiki中的方法自己编译openchrome,然后用上面这个配置。
我的显卡是VIA Unichrome P4M800CE,在ubuntu9.04和Fedora11下均驱动不了,用了
上面这个配置后在ubuntu9.04下正常了。
  如果这个配置对你有帮助,跟帖说明,以让我知道这个帖没有白发。
个人博客:http://www.hanghj.com
zyf2649
帖子: 1
注册时间: 2007-01-31 20:33

Re: [分享]ubuntu9.04和Fedora11下VIA集成显卡驱动不了的进来

#2

帖子 zyf2649 » 2009-07-27 15:16

我的显卡和你的不一样,但是我也是via显卡p4m800的但是我就是不会编译,烦请写的详细些,这样我们这些菜鸟才能看的明白,或者你就编译好一个文件包给我们直接下载行吗?
回复