1

I have a Sony Vaio laptop with an i5 460M CPU and a NVIDIA 310M graphics card. There was no mention by Sony about support for hybrid graphics (specifically Nvidia Optimus), but the processor does have integrated graphics, according to the Intel web site.

However, in the output of lspci -v | grep VGA there is only the entry for the Nvidia dedicated card:

01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 310M] (rev a2) (prog-if 00 [VGA controller])

On the other hand, Ubuntu seems to be trying to load some Intel/Graphics related modules, since I get the failed to get i915 symbols, graphics turbo disabled error during boot.

Therefore, I'd like to know if there is the possibility of using the Intel graphics, with bumblebee, or is it safe to remove the modules from boot (it slows down boot for a few seconds).

Any help will be appreciated!

João André
  • 1,330
  • 3
  • 17
  • 23

1 Answers1

0

Try lspci -v | grep -E 'VGA|3D'. Some machines report the Nvidia card as "3D controller". For that error message, see failed to get i915 symbols, graphics turbo disabled error on boot.

You are using the Intel graphics by default, you do not need to do anything. If you want to use the Nvidia card, see Is a NVIDIA GeForce with Optimus Technology supported by Ubuntu?. Usually you do not need the Nvidia card at all, I just disabled mine. The only time I really need it was for an OpenGL 3.1 application that could not run on the Intel one.

Lekensteyn
  • 178,446