Setting up your webcam under Ubuntu 7.10
Created by: Bill Giannikos,Last modification on Tue 19 of Feb, 2008 [13:00 UTC]
If the guide here does not cover what you were looking for you can view the guides section for coverage of other distributions.
Author
Bill Giannikos (bill2 at giannikos.com.au)www.billgiannikos.com
Introduction
This guide will help you set up your webcam under Ubuntu 7.10. Unlike many other distributions, Ubuntu 7.10 includes the Gspca and Linux-uvc drivers which are the two most commonly needed drivers for most webcams. This means that many webcams are supported "out of the box" by Ubuntu 7.10 and you won't need to follow this guide at all.However these two drivers are currently under heavy development which therefore means you may need to update the driver included Ubuntu 7.10 for proper support of your webcam. This guide will help you install the latest versions of the Gspca and Linux-uvc drivers.
Notes
While this guide is mainly focused to laptop users there isn't any difference for desktop users.Both the Gspca and Linux-uvc drivers are in a development stage. This means the drivers are not yet considered fully stable and should be installed with caution. This is especially true for the Linux-uvc driver as it is still listed as being in alpha stage.
The Gspca driver version included with Ubuntu 7.10 is 1.00.12. At time of writing the current version of the driver is 1.00.20.
The linux-uvc driver included in Ubuntu 7.10 reports it as being v0.1.0. However the Linux-uvc project has not published a official release of its driver so this version number is not that meaningful.
Prerequisites
You should run a full update for your installation of Ubuntu to ensure you have all the latest packages installed.Determining the driver to use
In Linux there are 2 different drivers which covers the majority of webcams available, these are the Gspca or Linux-uvc driver. You will need to determine which is the correct driver to install. If you are not sure which webcam you have you can make use of the 'lspci' and 'lsusb' commands to print a list of devices on your system.After determining your webcam type you need to see which driver supports your webcam. Here is a list of webcams supported by the Gspca driver and here is a list of webcams supported by the linux-uvc driver.
If you webcam doesn't appear on either list then it's possible your webcam isn't supported. If you like you can just try installing both drivers anyway and see how you go.
Installing the latest Gspca driver
In this section we will be detailing the procedure of installing the latest Gspca driver for Ubuntu 7.10.1. Download the latest drivers from http://mxhaard.free.fr/download.html. You want to download the latest gspcav1 driver, not the older spca5xx. In this guide we are going to use gspcav1-20071224 as at the time of writing these are the current ones.
2. Load up a terminal window if you are in the graphic interface.
3. Type in the following to install gcc and the kernel headers:
sudo apt-get install build-essential linux-headers-`uname -r`
4. Move to the /usr/src/ folder with:
cd /usr/src
5. Extract the contents of the file you downloaded with:
sudo tar -xzvf /path/to/gspcav1-20071224.tar.gz
Remember to replace the "/path/to" in this command to the path of where your file is and change the filename to the version you downloaded
6. Move into the newly created folder with
cd gspcav1-20071224
7. Now start the building process with:
sudo make
This will take a while.
8. And finally we install the driver with:
sudo cp -a gspca.ko /lib/modules/`uname -r`/ubuntu/media/gspcav1/
9. Reboot your computer and the newer gspca driver will be used.
Installing the latest Linux-uvc driver
In this section we will be detailing the procedure of installing the latest Linux-uvc driver for Ubuntu 7.10.1. Load up a terminal window if you are in the graphic interface.
2. Type in the following to install gcc, svn and the kernel headers:
sudo apt-get install build-essential subversion linux-headers-`uname -r`
3. Move to the /usr/src/ folder with:
cd /usr/src
4. Download the latest driver with:
sudo svn checkout svn://svn.berlios.de/linux-uvc/linux-uvc/trunk
5. Move into the newly created folder with
cd trunk
6. Now start the building process with:
sudo make
This will take a while.
7. And finally we install the driver with:
sudo cp -a uvcvideo.ko /lib/modules/`uname -r`/ubuntu/media/usbvideo/
8. Reboot your computer and the newer linux-uvc driver will be used.

Comments
Thank You