分页: 1 / 5

如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-08 9:20
ellon
好像很多人都不知道如何是好,我在這裡留一個簡單教程: for 8.04

下載最新libdrm 2.4.9 (打了patch,不需要在xorg設置DRI了)
http://myubuntu.ca/download/libdrm-2.4.9.tar.bz2

最新Intel Video Driver 2.5.1(打了patch的)
http://myubuntu.ca/download/xf86-video- ... .1.tar.bz2

for 8.10, 沒有打patch的Driver:
http://xorg.freedesktop.org/archive/ind ... .1.tar.bz2

編譯準備:
sudo apt-get install build-essential xorg-dev mesa-common-dev


編譯:
tar xvjf libdrm-2.4.9.tar.bz2
cd libdrm-2.4.9
./configure --prefix=/usr
make
sudo make install

cd ..

tar xvjf xf86-video-intel-2.5.1.tar.bz2
cd xf86-video-intel-2.5.1
./configure --prefix=/usr
make
sudo make install


驅動還原:
sudo apt-get install libdrm2 --reinstall
sudo apt-get install xserver-xorg-video-intel --reinstall

P.S.
/etc/X11/xorg.conf的section "Device"裡,最好有一項Driver "intel",但不一定需要的。(如果3d用不了,就把Driver "intel"加到那個section)
如果glxgears提示DRI問題,就在xorg.conf的最後,加入:
Section "DRI"
Mode 0666
EndSection

為了防止Ubuntu更新時,更換了驅動,強烈建議在synaptic鎖定xserver-xorg-video-intel和libdrm2的版本!

Re: 如何安裝最新Intel顯卡驅動r?

发表于 : 2008-11-08 10:01
staunch
让我苦等了几个月,终于找到你了,先试一下看你的显卡是多少的我的X3100不知可不可以 :em05

Re: 如何安裝最新Intel顯卡驅動r?

发表于 : 2008-11-08 10:15
xuxian0010
GMA 950的 可以不?不是最新的。。。笔记本集成显卡

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-08 21:18
staunch
安装成功了,但在xorg.conf里面section "Device"里没有intel这一个注解
还有你用的命令./configure --prefix=/usr这个"--prefix=/usr"后缀是什么意思,可以不加否 :em06

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-08 21:23
ryoohki
./configure --prefix=/usr
显卡配置文件./configure的存放地点

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-08 23:12
ellon
staunch 写了:安装成功了,但在xorg.conf里面section "Device"里没有intel这一个注解
还有你用的命令./configure --prefix=/usr这个"--prefix=/usr"后缀是什么意思,可以不加否 :em06
--prefix=/usr是必需的,他指定了顯卡驅動的安裝地址:
/usr/lib/xorg/modules/drivers
如果沒有了--prefix=/usr,驅動會安裝在
/usr/local/lib/xorg/modules/drivers,就不會有任何作用。

xorg.conf的section "Device"裡,最好有Driver "intel",但不一定需要的。(如果3d用不了,把Driver "intel"加到那個section)

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-09 14:01
Hrunt
安装lz说的做了,编译安装成功
但为什么还是不支持3D加速呢?而且原本支持的Opengl现在好像也不支持了。。。

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-16 0:53
ellon
更新到2.5.1,
Sorry,之前那個2.5.0的下載連接有問題。

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-21 14:19
nt_sir
1、进行xf86-video-intel-2.5.1文件解压缩后进入
2、进行文件/configure --prefix=/usr
3、出现下面提示:
checking for DRM... configure: error: Package requirements (libdrm >= 2.4.0) were not met:
Requested 'libdrm >= 2.4.0' but version of libdrm is 2.3.1
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables DRM_CFLAGS
and DRM_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
4、然后 root@wujun-desktop:~/桌面/xf86-video-intel-2.5.1# make
出现make: *** 没有指明目标并且找不到 makefile。 停止。
下面进行不下去了

请问是什么问题呢

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-21 14:27
cnkilior
Requested 'libdrm >= 2.4.0' but version of libdrm is 2.3.1

[url]apt://libdrm[/url]

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-22 7:33
ellon
nt_sir 写了:1、进行xf86-video-intel-2.5.1文件解压缩后进入
2、进行文件/configure --prefix=/usr
3、出现下面提示:
checking for DRM... configure: error: Package requirements (libdrm >= 2.4.0) were not met:
Requested 'libdrm >= 2.4.0' but version of libdrm is 2.3.1
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables DRM_CFLAGS
and DRM_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
4、然后 root@wujun-desktop:~/桌面/xf86-video-intel-2.5.1# make
出现make: *** 没有指明目标并且找不到 makefile。 停止。
下面进行不下去了

请问是什么问题呢
tar -zxf libdrm-2.4.1.tar.gz
cd libdrm-2.4.1
./configure --prefix=/usr
make
sudo make install

這一步,你做好了嗎?

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-24 16:26
blue2080
我安装成功了,以前3d游戏都不能玩,我在网上找了好久都没解决,现在好了,thank you!!!!
绝对是好贴,广大intel显卡用户要多顶顶,不要让沉下去阿!

:em11 :em11 :em11 :em11 :em11 :em11 :em11 :em11

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-24 20:34
blue2080
请教一下:装完驱动,开启compiz还是不行阿,提示错误是
Checking for Xgl: not present.
Detected PCI ID for VGA:
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Comparing resolution (1280x800) to maximum 3D texture size (2048): Passed.
Checking for Software Rasterizer: Not present.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
/usr/bin/compiz.real (video) - Warn: No 8 bit GLX pixmap format, disabling YV12 image format
是不是要编译mesa阿,我下了不会编译,希望高人能帮帮我,也帮帮和我一样的让人,thank you!

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-24 20:38
blue2080
驅動還原:
sudo apt-get install xserver-xorg-video-intel --reinstall
这是什么作用阿,1.使刚安装的驱动生效?
2.还原到原来的驱动?

Re: 如何安裝Intel顯卡最新驅動?

发表于 : 2008-11-25 23:31
ellon
sudo apt-get install libdrm2 --reinstall
sudo apt-get install xserver-xorg-video-intel --reinstall
是還原,以備不時之需