谓的GMA,是指'Graphic Media Accelerator',通俗地说就是intel的显卡,这种显卡普遍存在于intel的主板上,拖迅驰平台的福,它也是目前市场占有率最高的显卡。
相关阅读:
Gentoo 安装之intel无线网卡篇 http://www.linuxidc.com/Linux/2012-03/56744.htm
Gentoo 安装之intel Core2 CPU篇 http://www.linuxidc.com/Linux/2012-03/56745.htm
Gentoo 安装之intel GMA显卡篇 http://www.linuxidc.com/Linux/2012-03/56745.htm
几乎所有的Xorg驱动都包含下面这些部分
从2008年10月22日开始Gentoo已经将所有的ebuilds里GMA驱动的名字转换为xf86-video-intel.xf86-video-i810已经不再存在了。要更新到新版本只需要在/etc/make.conf里把VIDEO_CARDS变量设置为 intel即可。
显卡驱动的安装
内核 Linux Kernel Configuration:
Device Drivers --->
Graphics support --->
<*> /dev/agpgart (AGP Support) --->
<*> Intel 440LX/BX/GX, I8xx and E7x05 chipset support
<*> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) --->
<*> Intel 830M, 845G, 852GM, 855GM, 865G
< > i830 driver
<*> i915 driver
Xorg
把这一行加入你的/etc/make.conf来保证你只会为你的Xorg server安装唯一的显卡驱动 File: /etc/make.conf
VIDEO_CARDS="intel"安装 x11-base/xorg-x11 emerge xorg-x11或者运行下面的命令来更新你的系统
emerge -uDNva xorg-x11这个命令可能会升级一些额外的包以满足新版本Xorg的依赖关系
编辑你的 /etc/X11/xorg.conf:
File: /etc/X11/xorg.conf
Section "Module"
...
Load "glx"
Load "dri"
...
EndSection
...
Section "Device"
...
Driver "intel"
...
EndSection
...
Section "DRI"
Mode 0666
EndSection
此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/57407.html