How to install Gallium3D drivers in ubuntu 12.10

Sponsored Link
Gallium3D is a free software library for 3D graphics device drivers. It has been developed by VMware since they acquired Tungsten Graphics in 2008.

The Gallium3D library operates as a layer between the graphics API and the operating system with the primary goal of making driver development easier, bundling otherwise duplicated code of several different drivers at a single point, and to support modern hardware architectures. This is done by providing a better division of labor, for example, leaving memory management to the kernel DRI driver.

Gallium3D has been a part of Mesa since 2009 and is currently used by the free and open source graphics driver for Nvidia (nouveau project),and by the free and open source graphics driver for ATI Radeon R300-R900.

Install Gallium3D drivers in ubuntu 12.10

Open the terminal and run the following commands

sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
sudo apt-get install libg3dvl-mesa

After completing the installation you have to restart your system

Uninstall Gallium3D drivers in ubuntu 12.10

You can revert to the default drivers by removing the PPA as follows

Open the terminal and run the following commands

sudo apt-get install ppa-purge

sudo ppa-purge ppa:oibaf/graphics-drivers

Sponsored Link

You may also like...

1 Response

  1. tintzin says:

    NIce! thanks, will try it out. wonder if it will make a difference with an integrated 4250.

Leave a Reply

Your email address will not be published. Required fields are marked *