Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

CPU/显卡/打印机/USB设备等硬件问题
回复
wl1986137
帖子: 17
注册时间: 2007-11-30 23:32

Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

#1

帖子 wl1986137 » 2009-07-03 16:55

我的机子的显卡是intel82945G Express 的,但是每次启动都说只能在一个低分辨率模式下运行,屏幕最高分辨率是600*800,超级痛苦,我查看了我的/etc/X11/xorg.conf里面什么都没有配置,主要的内容如下:
Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 16
EndSection
我配置了也不起作用,而且配置错了又启动不了,我也不知道我这个型号的驱动Dri这一节怎么写,代码是多少啊?郁闷~~~~~~~
我下载了intel的最新linux驱动xf86-video-intel-2.7.0,编译安装老是configure过不去,缺少很多库。装了好几天,快疯掉了。不是说intel的驱动linux自带吗?怎么我这个例外啊?顺便提一下,我这个显示器是BenQ FP71G的,也不算杂牌啊,怎么每次检测显示器都说未知啊?
苦等那位高手路过,指点一二!
tocai
帖子: 37
注册时间: 2008-12-21 0:49

Re: Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

#2

帖子 tocai » 2009-07-05 15:27

你在xorg.conf没有设定显卡类型比如driver "intel"
可以按ALT+CTRL+F2切换到CLI,再运行sudo /etc/init.d/gdm stop结束X
再运行sudo X -configure生成配置文件xorg.conf.new
再sudo cp xorg.conf.new /etc/X11/xorg.conf
这样就好了,重新启动X,sudo /etc/init.d/gdm start
头像
wangdu2002
帖子: 13284
注册时间: 2008-12-13 19:39
来自: 物华天宝人杰地灵

Re: Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

#3

帖子 wangdu2002 » 2009-07-05 15:30

楼主的情况真是怪事,照理Inter的显卡完全不需要自已操心的,楼主照楼上的做法试试。 :em03
行到水穷处,坐看云起时。
海内生明月,天涯共此夕。
--------------------吾本独!
wl1986137
帖子: 17
注册时间: 2007-11-30 23:32

Re: Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

#4

帖子 wl1986137 » 2009-07-08 11:26

tocai 写了:你在xorg.conf没有设定显卡类型比如driver "intel"
可以按ALT+CTRL+F2切换到CLI,再运行sudo /etc/init.d/gdm stop结束X
再运行sudo X -configure生成配置文件xorg.conf.new
再sudo cp xorg.conf.new /etc/X11/xorg.conf
这样就好了,重新启动X,sudo /etc/init.d/gdm start
我试了一下,确实可以生成一个很全的xorg.conf,但是还是改不了分辨率。启动的时候又变成最原始的错误了:
(EE)No valid modes
(EE)Screen(s) found,but none have a useable configure
我刚装上系统的时候没有作任何配置就是这两个错误
我把Device段的Driver改成i810 ,结果变成了No devices detected了,我明明装了xerver-xorg-video-intel了。而且我很确定我的显卡是intel的,而且系统可以探测出来
wl1986137
帖子: 17
注册时间: 2007-11-30 23:32

Re: Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

#5

帖子 wl1986137 » 2009-07-08 11:27

生成的新的xorg.conf内容如下:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "dri2"
Load "record"
Load "dri"
Load "extmod"
Load "glx"
Load "dbe"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "82945G/GZ Integrated Graphics Controller"
BusID "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
头像
aquila995
帖子: 77
注册时间: 2009-05-22 14:52
联系:

Re: Ubuntu 9.04 怎么装不了intel的显卡驱动啊?

#6

帖子 aquila995 » 2009-07-17 9:09

正在google这个问题,我的是P4 1.8+1G+d865GVHZ,集成显卡,装9.04无法驱动显卡,当然也就开不了3D。
等待高手指教! :em11
amd X2 250+785G+DDR3 1333 2G*2+HD4200集成。正在试用ubuntu11.04.
回复