4

I know that in Ubuntu 14.04 there exists nvidia-prime for Nvidia Optimus, but I don't like it and neither am I able to get it work. After upgrading from Ubuntu 12.04 everything crashed, and I made a clean install of Ubuntu 14.04 and Bumblebee, but now I have new troubles. After running optirun glxgears I get the following error:

**[ 4703.996785] [ERROR]Cannot access secondary GPU, secondary X is not active.**
**[ 4703.996910] [ERROR]Aborting because fallback start is disabled.**

Please help.

karel
  • 122,292
  • 133
  • 301
  • 332
Cristian
  • 151

2 Answers2

2

From: https://wiki.debian.org/Bumblebee#Common_issues

I had to edit the file '/etc/bumblebee/bumblebee.conf' and set the driver manually :

Driver=nvidia

You should have a corresponding [driver-nvidia] section in your file with the current version of your nvidia driver :

[driver-nvidia]
# KernelDriver=nvidia-current
KernelDriver=nvidia-331
# LibraryPath=/usr/lib/nvidia-current:/usr/lib32/nvidia-current
LibraryPath=/usr/lib/nvidia-331:/usr/lib32/nvidia-331
# XorgModulePath=/usr/lib/nvidia-current/xorg,/usr/lib/xorg/modules
XorgModulePath=/usr/lib/nvidia-331/xorg,/usr/lib/xorg/modules

then restart the bumblebee daemon :

sudo service bumblebeed restart 
aya
  • 21
-1

I believe that you need to set up a virtual server for your image output. I am not sure on 14.04, but I know this works for me on upgrading to 13.10 from 12.04. It is not specific to 14.04, but if you are stumped, this answer should provide some guidance:

External Monitor display on Thinkpad W520 with 12.04

Here is a quick summary of the answer on that link:

1) Install latest intel drivers, hope that intel-virtual-output, which is the integrated version of screenclone. If it's not packaged, compile that stuff from source.
2) In your xorg.conf.nvidia ensure the option preventing external screens is disabled.
3) Xrandr as usual :)
modulitos
  • 699