我的Fedora core 6 安装笔记(2)

2.    显卡驱动 (让我痛并快乐着)

FC6最大的亮点就是添加了compiz的3D特效,可是由于nvidia等厂商冰没有公开源代码,所以使用系统自带的驱动并不能打开特效,必须安装官方驱动9626以上版本的才可以打开特效,不过官方驱动比较麻烦,还是直接使用编译好的比较方便。

添加livna的源: sudo rpm -ivh

导入密匙:sudo rpm --import

接着就可以安装nvidia驱动了:sudo yum install kmod-nvidia

成功安装驱动后,还必须对xorg.conf进行设置方可使用compiz。

以下是我的xorg.conf的部分配置 方法,仅供参考。


Section "Files"

ModulePath   "/usr/lib/xorg/modules/extensions/nvidia"

ModulePath   "/usr/lib/xorg/modules/extensions"

ModulePath   "/usr/lib/xorg/modules"


EndSection


Section "Module"

SubSection "extmod"

Option     "omit xfree86-dga"

# don't initialise the DGA extension

EndSubSection

Load "glx"


EndSection


Section "Device"

Identifier  "Videocard0"

Driver      "nvidia"


EndSection


Section "Screen"

Identifier "Screen0"

Device     "Videocard0"

DefaultDepth    24

# Option     "DisableGLXRootClipping" "True"

Option     "AddARGBGLXVisuals" "True"

SubSection "Display"

Viewport   0 0

Depth     24

Modes "1152x864" "1024x768" "800x600" "640x480"

EndSubSection


EndSection


Section "Extensions"

Option     "Composite" "Enable"

EndSection

(# Option     "DisableGLXRootClipping" "True",这一项被我注销了,不知道为什么,打开此项后找不到标题栏,如果有什么问题请打开此项。)


 除了系统自带的compiz特效,还可以使用Fedora extra的beryl特效,安装方法是:sudo yum –y install beryl

beryl提供了比compiz更多的特效,比如焰火效果等。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/a6e60514efe7b5f71b7e8b1642350e4a.html