1

After fighting Nvidia optimus too long, I've decided to give up and try to just get 3d working, using any way. I've tried out Fedora 15, which actually worked for my computer -- nice 3d graphics, recognised my intel card and used the driver. I'm trying to install the intel graphics on a 11.04 alienware M11x. First step I figured would be disabling nvidia, but using sudo echo "blacklist nouveau" > /etc/modprobe.d/blacklist-nvidia.conf says permission is denied (Yes, I definitely used sudo). Any suggestions how to do this?

System: Alienware M11x R3 [8gb ram, Intel Core i5-2537M 1.4GHz (2.3GHz Turbo Mode, 3MB Cache), NVIDIA GeForce GT540 graphics with 1.0GB Video Memory and Optimus]

Wane5tars
  • 306
  • 1
    As to why sudo didn't work: It just applies to the echo "blacklist nouveau" part; the > /etc/modprobe.d/blacklist-nvidia.conf part is still being executed using your normal user permissions; see http://stackoverflow.com/questions/82256/how-do-i-use-sudo-to-redirect-output-to-a-location-i-dont-have-permission-to-wr – daniel kullmann Oct 20 '11 at 07:08
  • did you try a recent version of bumblebee? – 719016 Jun 09 '12 at 15:10

3 Answers3

1

You cannot disable the Nvidia card by default, it's hardwired to the Intel CPU. You had 3D issues because the card could not be used, but the drivers were still loaded, preventing the Mesa OpenGL module from being loaded. This breaks graphical effects, 3D capabilities and such. Uninstalling the nvidia driver reverts this behavior.

Your sudo echo command failed because of Redirect the output using `sudo`

Optimus is not supported by nVidia for Linux. For a longer explanation and possible workarounds, see Is a NVIDIA GeForce with Optimus Technology supported by Ubuntu?

Lekensteyn
  • 174,277
  • Thanks, the echo tip was nice (though I found I have no ./vgaswitcheroo folder, which I could not make).

    Not sure whether I've disabled it, but disabling the proprietary driver worked for me; got 3D now and very happy.

    – Wane5tars Oct 20 '11 at 16:45
  • 1
    I've no vga switcheroo folder either, but it's unlikely going to work since it was designed for laptops with a mux for switching between the intel and nvidia cards. Your card is still on and sucking about 20% power without being useful. In the near future, the ACPI devs from the Bumblebee Team (me and ArchangeGabriel) may have created a script for detecting the right methods for turning the card off (and on). – Lekensteyn Oct 20 '11 at 19:10
0

Got it working, or at least, 3D. Just had to disable the propietary driver through the Drivers application. I way overthought this.

Wane5tars
  • 306
-1

First type sudo su in the terminal, then everything you write will be in sudo mode. And then type echo "blacklist nouveau" >> /etc/modprobe.d/blackist.conf

Peachy
  • 7,117
  • 10
  • 38
  • 46
jorge
  • 1