ubuntu中无法启用桌面效果,3D效果几种解决方案?

方案1

就是卸载显卡驱动

然后再更新驱动

下载envyng-core

代码:

sudo apt-get install envyng-core

运行envyng

代码:

sudo envyng -t

用envyng卸载了原有驱动,接着用它又安装了一次驱动,重启

(系统-系统管理-硬件驱动 更新驱动)

方案2

打开gconf-editor,将/apps/metacity/general/compositing_manager
这个键值后面的勾去掉
即可,然后在去启动桌面效果,无论是正常和扩展,都能大开了,3D桌面也可以启动了

方案3

白屏后Cltrol+Alt+backspace退回登录届面。点左下角的 选项/会话/安全模式下的终端。

输入以下命令: gconf-editor

找到Desktop->Goname->Application->windows_manager。把两处/usr/bin/compin改成/usr/bin/metacity。

按Cltrcol+Alt+backspace退回登录届面,选项/会话/Gnome。


方案4
编辑了xorg.conf文件.修改后便成功开启了.我知道是英特的显卡,所以我便也试验了一下.
sudo gedit /etc/X11/xorg.conf
找到里面有一排
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection
改成
Section "Device"
Identifier "intel"
Driver "intel"
EndSection
是在搜索到的文章里看来的.但是对照我的文件,发现下面还有一行
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
主要是这个 Device "Configured Video Device" 看起来正好对照之前我改掉的部分,所以我便也改成了
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "intel"
EndSection
然后重启 X,试验,一切正常.开启特效没有问题了.
如果有耐心的话,希望可以试验一下不改
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection