NVIDIA Optimus is an optimization technology created by NVIDIA which, depending on the resource load generated by client software applications, will transparently and seamlessly switch between two graphics adapters within a computer system in order to provide either maximum performance or minimum power draw from the system's graphics rendering hardware.
From https://github.com/Bumblebee-Project/Bumblebee/wiki/FAQ[Bumblebee's FAQ]: Bumblebee is a effort to make NVIDIA Optimus enabled laptops work in GNU/Linux systems.
Such feature involves two graphics cards with two different power consumption profiles plugged in a layered way sharing a single framebuffer.
The discrete GPU (NVIDIA) is turned off when not in use and activated and turned on though ACPI calls when demanding OpenGL applications require the extra power the discrete GPU can give.
Demanding OpenGL applications might include such things as 3D games or 3D rendering software but would not include such things as a web browser or a video playback program like mplayer or VLC.
If you have a laptop with an NVIDIA graphics card (usually you can tell by looking for an NVIDIA logo sticker on it), then it _might_ support the Optimus technology.
If you don't have an optimus technology computer nothing in this documentation is relevant to your PC.
(Optimus was slated at one point to go in desktop PCs but the industry ended up rejecting that concept…)
To further verify, if you have the two VGA devices with one as Intel Integrated and other as NVIDIA, as *root* look for the `/sys/kernel/debug/vgaswitcheroo/switch` file.
If it exists, then you have an optimus PC.
If its missing, then you might not.
(It might be that you have a card that nouveau can’t use yet because it is too new…)
Most users will want to turn off Secure boot in the BIOS or UEFI screen when you need nvidia drivers or bbswitch-dkms.
If you want to make your own public / private keys for kernel module signing you can look https://docs.fedoraproject.org/f{MAJOROSVER}/system-administrators-guide/kernel-module-driver-configuration/Working_with_Kernel_Modules.html#sect-signing-kernel-module-with-the-private-key[here] or https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/sect-signing-kernel-modules-for-secure-boot.html[here] for more information on the subject.
If you end up doing that and use the closed source NVIDIA driver, you will need to edit the `/etc/bumblebee/bumblebee-nvidia-sign.conf` file.
. To get Bumblebee, we first need to enable the https://copr.fedorainfracloud.org/coprs/chenxiaolong/bumblebee/ chenxiaolong/bumblebee[Copr repository]:
+
----
# dnf copr enable chenxiaolong/bumblebee
----
. Next, install the bbswitch driver, and the `bumblebee` and `primus` packages.
+
----
# dnf install akmod-bbswitch bumblebee primus
----
. For the `optirun` and `primusrun` commands to work, the current user must be added to the `bumblebee` group.
. Enable the `bumblebeed` service and disable the `nvidia-fallback` service. This service comes from the packaged drivers and will attempt to load `nouveau` if `nvidia` fails to load. However, when using Bumblebee, neither one should load at boot.
It may become tedious to always use the optirun program in a terminal to launch 3D games or other 3D opengl applications.
You may wish to create desktop launchers which use the `optirun` or `primusrun` commands in order to streamline this process.
For example, in the MATE desktop environment, when you right click on an empty space in the desktop a popup menu is displayed.
One option on this menu is btn:[Create launcher…] which allows you to create a graphical launcher icon for your apps which can be left on the desktop or moved into some folder.
Other desktop environments also offer this functionality though the methods differ from desktop to desktop.
This daemon will automatically detect attached displays in the background.
It will then perform all the trickery of virtualizing and cloning so that the newly attached screen can be used via conventional screen management methods, such as cloning/extending with xrandr.
For example, if your laptop's display is called eDP1, and your using a external adapter called HDMI1, and you want the display to be 1920×1080 resolution, you could run the following commands:
There are many different possibilities. Type `xrandr` with no arguments to see what displays you have attached.
See https://github.com/Bumblebee-Project/Bumblebee/wiki/Multi-monitor-setup[this web page] for further information on this subject.
Read the manual page for xrandr for even more information on the possibilities this command provides.
If `intel-virtual-output` works ok running by hand you could add it to your startup automatically if you desire.
One way would be to create a `/etc/rc.d/rc.local` script and add it into there.
Another way might be to create a systemd unit file as `Type=oneshot`.
A third way might be to run it at login using whatever mechanism your desktop environment supports for doing such things.
For example, in the MATE desktop environment, there is a `mate-session-properties` program (System -> Preferences -> Personal -> Startup Applications) that you can run programs from when you login.
Most desktop environments offer similar functionality though the methods differ from desktop to desktop.
There is a known problem with some wine applications that fork and kill the parent process without keeping track of it (for example the free to play online game "Runes of Magic")
This is a known problem with VirtualGL. As of Bumblebee 3.1, so long as you have it installed, you can use Primus as your render bridge:
----
$ optirun -b primus wine windows program.exe
----
[[error-cannot-access-secondary-gpu]]
=== [ERROR]Cannot access secondary GPU: No devices detected
You might also need to define the NVIDIA card somewhere (e.g. `file /etc/bumblebee/xorg.conf.nvidia`), using the correct `BusID` according to `lspci` output:
This could be because the nvidia driver is out of sync with the Linux kernel, for example if you installed the latest nvidia driver and haven't updated the kernel in a while.
=== ERROR: ld.so: object 'libdlfaker.so' from LD_PRELOAD cannot be preloaded: ignored
You're probably trying to start a 32-bit application with Bumblebee on a 64-bit system.
Please install the 32-bit versions of the packages mentioned above.
If the problem persists, please try using the primus bridge that was mentioned above.
[[fatal-io-error-11]]
=== Fatal IO error 11 (Resource temporarily unavailable) on X server
Change `KeepUnusedXServer` in `/etc/bumblebee/bumblebee.conf` from `false` to `true`.
Your program forks into background and bumblebee doesn't know anything about it.
[[video-tearing]]
=== Video Tearing
Video tearing is a somewhat common problem on Bumblebee.
To fix it, you need to enable vsync.
It should be enabled by default on the Intel card, but verify that from Xorg logs.
To check whether or not it is enabled for NVIDIA, make sure `nvidia-settings` is installed and run:
----
# optirun -b none nvidia-settings -c :8
----
`X Server XVideo Settings -> Sync to VBlank` and `OpenGL Settings -> Sync to VBlank` should both be enabled.
[[bumblebee-cannot-connect-to-socket]]
=== Bumblebee cannot connect to socket
If the console output is:
----
[ 1648.179533] [ERROR]You've no permission to communicate with the Bumblebee daemon. Try adding yourself to the 'bumblebee' group
[ 1648.179628] [ERROR]Could not connect to bumblebee daemon - is it running?
----
Verify whether or not you are in the `bumblebee` group:
----
# groups | grep bumblebee
----
Another reason for this error could be that you haven't actually turned on both gpus in your bios, and as a result, the Bumblebee daemon is in fact not running.
Check the bios settings carefully and be sure intel graphics (integrated graphics - may be abbreviated in bios as something like igfx) has been enabled or set to auto, and that it's the primary gpu.
Your display should be connected to the onboard integrated graphics, not the discrete graphics card.
If you mistakenly had the display connected to the discrete graphics card and intel graphics was disabled, you probably installed Bumblebee after first trying to run Nvidia alone.
In this case, be sure to remove the `/etc/X11/xorg.conf` or `.../20-nvidia...` configuration files. If Xorg is instructed to use NVIDIA in a conf file, X will fail.
[[prismusrun-mouse-delay-disable-vsync]]
=== Primusrun mouse delay/disable VSYNC
For `primusrun`, VSYNC is enabled by default and as a result, it could make mouse input delay lag or even slightly decrease performance.
Since compositing hurts performance, invoking `primus` when a compositing WM is active is https://github.com/amonakov/primus#issues-under-compositing-wms[not recommended].
If you need to use `primus` with compositing and see flickering or bad performance, synchronizing primus’ display thread with the application’s rendering thread may help:
WARNING: optirun crashes after you boot into Troubleshooting -> Start Fedora Live in basic graphics mode” and do an install that way.
If you did an install under Troubleshooting -> Start Fedora Live in basic graphics mode, then Bumblebee will not work.
You can tell by examining the `/var/log/Xorg.8.log` log file and looking for Kernel command line: and seeing nomodeset on that line.
When you use Start Fedora Live in basic graphics mode it adds nomodeset to your kernel command line which will cause your machine to use the VESA driver and make Bumblebee not work.
(It will just crash when you try) To fix that, edit `/etc/default/grub` and on the GRUB_CMDLINE_LINUX= line, remove the word nomodeset and then save the file, next, either run:
Some recent laptop models featuring AMI bioses have some compatibility issues with bbswitch and Optimus, making them unable to load into graphics mode and crashing every time it is attempted, as discussed in further details https://github.com/Bumblebee-Project/Bumblebee/issues/764#issuecomment-234494238in[this post] on the Bumblebee's GitHub project page.
If you are trying to use Linux on a recent Optimus laptop and it crashes every time you try to enter a graphics environment, please try adding the following parameters to your boot loader (Fedora users usually have GRUB installed):
This seems to work on most laptop models facing this issue, but bear in mind that this workaround has not been tested in every laptop model ever made – so your mileage may vary.
If the problems persist, you could try updating your BIOS or look for more info in the Bumblebee documentation and their community.
If you have a newer laptop (BIOS date 2015 or newer), then Linux 4.8 might break bbswitch since bbswitch does not support the newer, recommended power management method. As a result, the dGPU may fail to power on, fail to power off or worse.
See https://github.com/Bumblebee-Project/bbswitch/issues/140[Issue 140] for further information about this problem.
As a workaround, add `pcie_port_pm=off` to your kernel parameters.
Alternatively, if you are only interested in power saving (and perhaps use of external monitors), remove Bumblebee / bbswitch and rely on nouveau runtime power-management (which supports the new method).
primus-1.1.03282015-4 and newera, bumblebee-3.2.1-13 and newer, and (managed version) bumblebee-nvidia-375.26-2 and newer, and (un-managed version) bumblebee-nvidia-3.0-2 and newer will work with the newer mesa and new libglvnd library.
See a typo, something missing or out of date, or anything else which can be improved? Edit this document at https://pagure.io/fedora-docs/quick-docs[quick-docs's git repository].