Ubuntu安装的一些问题

1. 怎么进入root帐号
Ubuntu默认root帐号未激活
sudo passwd root 激活root
然后输入新root密码

之后用su root切换
2. nvidia笔记本双显卡怎么安装驱动

lspci | grep -i vga
显示显卡列表
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GeForce GT 630M (rev a1)
更新后正确识别出了显卡型号。

Nvidia 卡信息的末尾是 rev a1,表示独显已经关闭。

安装bumblebee

sudo add-apt-repository ppa:bumblebee/stable
sudo apt-get update
sudo apt-get install bumblebee bumblebee-nvidia

查看bumblebee 版本:

bumblebeed --version

使用”optirun 程序名“手动开启nvidia来运行需要加速的程序
optirun vmware

查看bunblebee的日志
cat /var/log/syslog | grep -i bumblebee

猜你喜欢

转载自bigfeet.iteye.com/blog/1837765