Topic: Linux Hybrid Graphics
If you were like me and have i notebook with hybrid graphics than you know that this matter can be an utter pain. I have an Asus 1215N with an intel/Nvidia ion2 Optimus graphics chipset. I found a project called Bumblebee and it lets you use both sides of your graphics chipset at will. for example i can have my desktop running on my intel card while i have my nvidia card running a game at the same time on the same desktop, or you can run your entire desktop on the nvidia card. its up to you.
Here is a url for the Project.
https://github.com/MrMEEE/bumblebee
I will write a howto on what i had to do to get it working Crunchbang 10 Stable
First i had to get the debian version of Bumblebee from this git repo.
git clone https://github.com/z0rc/debumblebeeNext you will have to enable the 'sid' repo so you can get the proper nvidia glx driver.
gksudo gedit /etc/apt/sources.listand add this
deb http://ftp.de.debian.org/debian/ sid main contrib non-freethen update the package lists 'sudo apt-get update'
Now you need to change the distro name in your /etc/issue. This is so the script knows your running
a debian system.
so 'gksudo gedit /etc/issue'
and change it to look like this (you can change it back after the script has ran.)
Debian GNU/Linux \n \lnow cd in the bumblebee file and run the install script.
cd ~/bumblebee && sudo ./install.shnow you should be good to go.
i did keep getting this one error
sudo: /etc/sudoers is mode 0644, should be 0440its an easy fix though. just do
sudo chmod 0440 /etc/sudoers.d/bumblebee