很多人在安装UBUNTU的显卡驱动后发现自己的标题栏神秘失踪,并且打开终端后是白茫茫的一片,叹为观止,上网苦寻,后得高人提示,方悟此法:
1.点击系统-首选项-外观-视觉效果
设为“无”后标题栏就闪出来了。这是第一种方法。
2.打开 xorg.conf
sudo gedit /etc/X11/xorg.conf
寻找Section "Screen"
下面是我的:
Section "Screen"
Identifier "Default Screen"
Device "nVidia Corporation G80 [GeForce 8400M GS]"
Monitor "通用显示器"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1280x1280"
把它们修改为:
Section "Screen"
Identifier "Default Screen"
Device "nVidia Corporation G80 [GeForce 8400M GS]"
Monitor "通用显示器"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1280"
也就是修改这两个属性“DefaultDepth”、“Depth”它们代表的是色深,24位颜色数为2^24=16777216种色彩,16位颜色数为2^16=65536种色彩,当然也有些显卡比较牛能串上32位色深.