歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Fedora 7系統中成功安裝beryl

Fedora 7系統中成功安裝beryl

日期:2017/2/28 17:41:48   编辑:Linux教程
(1)安裝
首先安裝顯卡驅動,確認已經安裝官方驅動:
$ glxinfo | grep rendering
direct rendering: Yes
然後開始安裝
yum install beryl-gnome 或 yum install beryl-KDE
或者直接
yum install beryl(包括KDE與gnome)

(2)可能遇到的問題:
首先測試自身帶的compiz desktop-effects效果是否正常。
在終端中輸入desktop-effects,在出來的窗體中點擊啟用桌面效果,然後選擇立方體,如果正常,則使用beryl一般也不會有什麼問題。
如果出現如下提示:
compiz: No sync extension
打開/etc/X11/xorg.conf作如下修改:
在 "Device" section:加入
Option "AddARGBGLXVisuals" "True"
Option "DisableGLXRootClipping" "True"
在Module section:加入
Load "extmod"
如果是ATI則加入
Load "dri"
最後在Moudel section中加入:
SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
我在安裝的時候出現了下面的問題,用以上方法成功解決(若出現啟動beryl後。窗體沒有邊框,請確認使用了emerald,若仍不行,可以按上面的方法修改解決此問題)。
這是另一個beryl設置方案,大致都是差不多的,我沒試過:
改/etc/X11/xorg.conf配置文件。
先備份原來的配置文件cp xorg.conf xorg.conf.bak, 然後在xorg.conf中Module段加入
SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
在Device段中加入
Option "DisableGLXRootClipping" "True"
Option "AddARGBGLXVisuals" "True"
Option "AllowGLXWithComposite" "True"
Option "RenderAccel" "True"
在配置文件的最後加入
Section "Extensions"
Option "Composite" "Enable"
EndSection
Copyright © Linux教程網 All Rights Reserved