如何为HP dv6 7040tx安装可切换图形的驱动程序

我有一台带双显卡的笔记本电脑:

1.英特尔图形4000

2.Nvidia geforce 630m

我想完全从Windows切换到UBUNTU 13.04 :)但是,我对这个环境很新。在Windows中,它根据负载自动从一张卡切换到另一张卡。

我想安装驱动程序。 我读了大黄蜂。 我还从ubuntu软件中心找到了“其他驱动程序”。

所以,我真的不确定安装是否会解决问题。

我想要像在Windows中一样:也就是说,如果我玩游戏,我想切换到nvidia 630m。 如果我不玩,我想利用intel 4000 ..

请给我一个循序渐进的指南,因为我不是ubuntu的家人。 谢谢 :)

以12.04 amd64 arch为例 。 我推荐12.04 LTS而不是13.04。 12.04比13.04更稳定,并将获得支持直到2017年。一些PPA如ppa:ubuntu-x-swat/x-updatesppa:ubuntu-x-swat/intel-graphics-updates现在不提供给13.04。

不要从ubuntu软件中心处理显卡的“附加驱动程序”。

如果有设置项目,首先需要将图形卡设置为bios中的“可切换”。 如果没有,不在乎。

对于你的笔记本,你应该使用大黄蜂:

 sudo add-apt-repository ppa:bumblebee/stable sudo add-apt-repository ppa:ubuntu-x-swat/x-updates sudo apt-get update sudo apt-get install bumblebee bumblebee-nvidia primus-libs-ia32 Ref: https://wiki.ubuntu.com/Bumblebee#Installation 

那么如果你想用Nvidia显卡运行应用程序,你只需要在gnome-terminal中运行’optirun xxx’。

你也可以使用HD4000 for mplayer

 sudo apt-get install i965-va-driver sudo add-apt-repository ppa:sander-vangrieken/vaapi sudo apt-get update sudo apt-get install mplayer-vaapi Last, change video output driver to `vaapi` in `Gnome Mplayer` or `VLC` config. Ref: http://www.webupd8.org/2012/11/install-mplayer-with-va-api-hardware.html 

为了让ubuntu在“系统设置” – >“详细信息”中了解您的英特尔显卡,您需要运行:

 sudo apt-get install mesa-utils 

您还可以尝试使用intel SNA(英特尔图形驱动程序的新2D加速技术):

 sudo add-apt-repository ppa:ubuntu-x-swat/intel-graphics-updates sudo apt-get update sudo apt-get dist-upgrade sudo mkdir /etc/X11/xorg.conf.d/ echo -e 'Section "Device"\n Identifier "Card0"\n Driver "Intel"\n Option "AccelMethod" "sna"\nEndSection' | sudo tee /etc/X11/xorg.conf.d/20-intel.conf Then restart machine. Ref: http://askubuntu.com/questions/298145/xserver-xorg-video-intel-in-ppaubuntu-x-swat-x-updates Ref: http://askubuntu.com/questions/225356/how-can-i-enable-the-sna-acceleration-method-for-intel-cards-under-ubuntu-12-04 Ref: http://www.phoronix.com/scan.php?page=news_item&px=MTExNjA Ref: http://www.phoronix.com/scan.php?page=article&item=intel_ivy_glamor&num=1