From Fedora Project Wiki

(Sorry if this is not in the correct format these instructions just needed to be written down somewhere. Please improve.)
 
(How to install bbswitch)
Line 1: Line 1:
== Description  ==
== Description  ==
Bumblebee is a tool for managing discrete graphics cards on laptops. There has been several attempts in the past but the latest project is working on a more complete solution.
Bumblebee is a tool for managing discrete graphics cards on laptops. There has been several attempts in the past but the latest project is working on a more complete solution. It comes in a few parts this page currently only deals with the bbswitch tool which allows the discrete card to be disabled and save battery life.


== Requirements ==
== Requirements ==
Line 9: Line 9:
* more?
* more?


== Install ==
== Install Bumblebee ==
Download the latest source from github.
Download the latest source from github.
  git clone https://github.com/Bumblebee-Project/Bumblebee.git
  git clone https://github.com/Bumblebee-Project/Bumblebee.git
Line 18: Line 18:
  ./configure --prefix=/usr
  ./configure --prefix=/usr
  make
  make
Install it:
  sudo make install
  sudo make install
You will also need to create relevant users and groups:
You will also need to create relevant users and groups:
Line 23: Line 24:
  sudo usermod -a -G bumblebee $USER
  sudo usermod -a -G bumblebee $USER


You can get help by running --help on either binaries.
== Install bbswitch ==
Download the latest source from github.
git clone https://github.com/Bumblebee-Project/bbswitch.git
cd bbswitch
Create the install files and load in to the kernel.
make
sudo make load
This obviously needs to be loaded in to the kernel every time.
== Usage ==
Now to run bumblebee:
Now to run bumblebee:
  sudo bumblebeed --daemon
  sudo bumblebeed --daemon
  optirun -- <application>
  optirun -- <application>
You can get help by running <pre>--help</pre> on either binaries.

Revision as of 15:29, 21 January 2012

Description

Bumblebee is a tool for managing discrete graphics cards on laptops. There has been several attempts in the past but the latest project is working on a more complete solution. It comes in a few parts this page currently only deals with the bbswitch tool which allows the discrete card to be disabled and save battery life.

Requirements

  • help2man
  • libX11-devel
  • glibc-devel
  • libbsd-devel
  • more?

Install Bumblebee

Download the latest source from github.

git clone https://github.com/Bumblebee-Project/Bumblebee.git
cd Bumblebee

Create the install files.

autoreconf -fi
./configure --prefix=/usr
make

Install it:

sudo make install

You will also need to create relevant users and groups:

sudo groupadd bumblebee
sudo usermod -a -G bumblebee $USER

You can get help by running --help on either binaries.

Install bbswitch

Download the latest source from github.

git clone https://github.com/Bumblebee-Project/bbswitch.git
cd bbswitch

Create the install files and load in to the kernel.

make
sudo make load

This obviously needs to be loaded in to the kernel every time.

Usage

Now to run bumblebee:

sudo bumblebeed --daemon
optirun -- <application>