美文网首页Nvidia Driver for Debian
Debian9 testing 发行版Nvidia驱动+Bumb

Debian9 testing 发行版Nvidia驱动+Bumb

作者: 飞速遗忘 | 来源:发表于2018-08-15 23:42 被阅读0次

    转载自:https://www.pcsuggest.com/install-and-configure-nvidia-optimus-with-bumblebee-in-debian/

    大致流程:
    1.查看本机显卡
    lspci -v | egrep -i 'vga|3d|nvidia' | grep -i 'nvidia'
    结果:
    03:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 840M] (rev ff) (prog-if ff)
    Kernel modules: nvidia
    2.加源
    3.安装内核头和bbswitch(用来切换内核显卡)
    4.双显卡要把nouveau加入黑名单否则可能黑屏
    5.安装NVIDIA驱动和bumblebee(用来便捷切换显卡的程序)
    6.安装VitualGL包(否则使用bumblebee启动显卡但是却没有提升效果)
    7.bumblebee默认的配置就能使用,一般不用配置
    8.optirun + 程序名 即可使用nvidia显卡打开程序

    以防连接失效,搬一下源内容。

    NVIDIA Optimus, the infamous switchable graphics adaptation for laptops/notebooks by NVIDIA, still doesn't fit well with Linux.

    That's why most Linux users having a laptop with optimus GPU faces problems like hot GPU(around 65° C), decreased battery life, roaring cooler fan etc. etc.!

    So if you are one of those lucky person with a optimus laptop and want to use your discrete GPU rather than turn off it totally, this tutorial is for you. This guide is specially for Debian and other directly Debian based distro like Kali Linux, LMDE etc.

    For newbies, if you don't know what are these things, you may have a look at the bumblebee project . Bbswitch is the kernel module used to turn off and on the discrete nvidia GPU and non-free nvidia optimus linux drivers are the proprietary GPU drivers provided by nvidia.

    Advantage of bumblebee over other solutions like nvidia prime is you can run one/many specific application using the discrete nvidia GPU without restarting the current X-session on the fly.

    Analyze the system

    First step is to know the system thoroughly, first check nvidia card.

    <pre>lspci -v | egrep -i 'vga|3d|nvidia' | grep -i 'nvidia'</pre>

    This should return something like bellow, which will give you a brief information about your nvidia GPU, some recent GPU shows them as 3D controllers.

    <pre>01:00.0 VGA compatible controller: NVIDIA Corporation GF108M [GeForce GT 540M] (rev ff) (prog-if ff)</pre>

    Now check the currently loaded nouveau (free nvidia driver) module and vga_switcheroo module,

    <pre>lsmod | grep -i 'nouveau'</pre>

    <pre>lsmod | grep -i 'vga_switcheroo'</pre>

    Currently Debian loads them automatically if any discrete GPU is found.

    Unload nouveau modules and install bbswitch

    If your kernel is loaded with the nouveau and other related modules, its the time to unload them with the modprobe command.

    <pre>sudo modprobe -r nouveau
    sudo modprobe -r vga_switcheroo
    </pre>

    Lets install bbswitch and related components to compile it. Installing bbswitch with dkms will automatically compile proper kernel module after any future kernel update.

    At this point, you must enable the main, contrib and non-free repository, to do so, put the line bellow in the /etc/apt/sources.list file

    <pre>deb http://ftp.debian.org/debian/ stretch main contrib non-free</pre>

    Change the word stretch according to your disto, like if you are using the Debian stable jessie, replace it with jessie . If you are not sure what I'm talking about, have a look at there and check out the sources.list portion.

    <pre>sudo apt-get update</pre>

    <pre>sudo apt-get install gcc make linux-headers-amd64</pre>

    <pre>sudo apt-get install dkms bbswitch-dkms</pre>

    This will take some time to download and install the packages and compile kernel modules. when the installation is complete, load the bbswitch module.

    <pre>sudo modprobe bbswitch load_state=0</pre>

    Testing: Now test the if the bbswitch is working properly or not.

    <pre>cat /proc/acpi/bbswitch</pre>

    This should return a line with the word OFF along with the PCI bus id the nvidia GPU, the PCI bus id could vary machine by machine.

    Another way to check it run the command lspci -v | grep -i 'vga' | grep -i 'nvidia' (mentioned above, watch out the fancy quotes) and check the end of the result line, if the prog-if value is ff then the GPU is off, if the value is 00 then the GPU is on.

    Blacklist the nouveau module

    To avoid auto load of nouveau and related modules after every reboot, they should be blacklisted. Just create a file with your favorite text editor named nouveau-blacklist.conf under the /etc/modprobe.d/ folder and put this line blacklist nouveau inside it. It could also be done with a single line command.

    <pre>su -c 'echo "blacklist nouveau" >> /etc/modprobe.d/nouveau-blacklist.conf'</pre>

    Just enter the root password and you are done.

    The bbswitch module is loaded automatically at every power up and turns off the discrete nvidia optimus GPU, no need to load it manually.

    Install nvidia non-free drivers and bumblebee

    Now we have to install the non-free nvidia drivers, bumblebee and some related extra packages.

    <pre>sudo apt-get install nvidia-kernel-dkms nvidia-xconfig nvidia-settings</pre>

    <pre>sudo apt-get install nvidia-vdpau-driver vdpau-va-driver mesa-utils</pre>

    This will install non-free nvidia drivers, nvidia kernel driver, nvidia specific OpenGL library etc. and other dependencies. Now install bumblebee,

    <pre>sudo apt-get install bumblebee-nvidia</pre>

    Wait some time to let the installation process finish.

    Install VirtualGL

    VirtualGL is required for the the optirun command as a bridge, but unfortunately Debian repository do not have the VirtualGL package, so we have to download it. Go to VirtualGL sourceforge repository and download the suitable package for your system. i.e. if you are using Debian 64 bit, download the latest amd64 package. Now install it with dpkg.

    <pre>sudo dpkg -i ~/Downloads/virtualgl_2.4.1_amd64.deb</pre>

    Also don't forget to change the path according to where you download the file.

    Configure nvidia optimus with bumblebee

    Fortunately bumblebee works fine with it's default configuration. But if you want to make any change to the settings, edit the /etc/bumblebee/bumblebee.conf file as root with your favorite text editor and restart the bumblebee service with this command sudo service bumblebeed restart .

    Accessing the discrete nvidia GPU needs root privilege, so have to add your system's username to the bumblebee group.

    <pre>sudo usermod -aG bumblebee $USER</pre>

    Now restart the bumblebee daemon with sudo service bumblebeed restart . Now you are done, reboot the system.

    Optional: You may need to add some extra configuration to the xorg.conf.nvidia file to avoid mouse module related error.

    Open the /etc/bumblebee/xorg.conf.nvidia file with your favorite text editor as root , then add the extra configuration there.

    <pre>Section "Screen"
    Identifier "Default Screen"
    Device "DiscreteNvidia"
    EndSection</pre>

    Save the file and exit the text editor, and restart bumblebee daemon.

    Testing switchable graphics capability

    After rebooting the system, you're ready to test the sample glxgears program.

    <pre>optirun -vv glxgears</pre>

    glxgears nvidia optimus kali linux

    There should be some delay (around 3-4 sec.) before starting glxgears, if it returns around or over 1000 FPS performance, that means NVIDIA optimus is working properly.

    This step is almost identical to check nvidia driver on ubuntu.

    For more information about optirun command, see the man page, man optirun ,and run optirun with different arguments, like

    <pre>optirun -v -b virtualgl -c jpeg glxgears</pre>

    A more detailed testing and benchmarking the NVIDIA GPU could be done with furmark , which returns more accurate result than this simple glxgears test.

    Troubleshooting

    I didn't faced any problem during installation and testing with Debian stretch, kernel 4.1.0-amd64, nvidia-340.67 driver.

    Just don't forget to add the apt non-free repository, install VirtualGL and add your user name to the bumblebee group.

    Sometimes you might need to add some different GRUB parameters to block the automatic loading of nouveau driver. More on the link below.

    UPDATE: As some readers are facing problems with debian nvidia optimus , I'hv written another tutorial specially for troubleshooting, based on reader feedback. I hope this will be helpful, here is the tutorial > NVIDIA Optimus troubleshooting in Debain .

    Best practice: If your laptop's BIOS or UEFI allow to completely disable discrete nvidia GPU, then disable it before installing the OS and re-enable it after the installation is finished. By doing this, you could avoid some troubles caused by the vga_switcheroo kernel module. ( I did this many time 🙂 )

    Conclusion

    So, that's it, how to setup nvidia optimus debian, this tutorial also useful for any Debian derivative like Kali Linux, or SolydXK.

    Use your nvidia GPU for something useful, like GPU computing with CUDA, NVIDIA OpenCL, fast password cracking with pyrit and many other computing extensive applications.

    If you faced any problem during the installation, just leave a comment, and don't forget to share it with your friends.

    相关文章

      网友评论

        本文标题:Debian9 testing 发行版Nvidia驱动+Bumb

        本文链接:https://www.haomeiwen.com/subject/sxfgbftx.html