Introduction
I recently got my Quickcam IM working under Dapper Drake. It is not that difficult, but it requires compiling and installing a more updated version of the spca5xx module than comes with dapper.
In order to make sure you have a Quickcam IM (though this newer version adds support for other webcams as well), make sure you webcam is plugged into a usb port and type the following into the terminal.
My output is:
Bus 003 Device 002: ID 046d:08d9 Logitech, Inc.
According to the documentation, the following ID numbers are for this camera as well.
046d:08a0
046d:08a1
046d:08a6
Now, let's get to the fun part.
Compiling
First off, let's grab the source from http://mxhaard.free.fr/spca50x/Downl...0060501.tar.gz
Let's also make sure the needed packages are installed by typing the following:
Code:
sudo apt-get install linux-headers-`uname -r` linux-restricted-modules-`uname-r` build-essential
After those packages are done installing, extract the file we downloaded to a folder of your choosing (/usr/local/src works well) and navigate there in a terminal.
Code:
tar -xzf spca5xx-20060501.tar.gz
or right-click the file and select Extract Here...
Compile the files:
Remove the old spca5xx files:
Code:
sudo modprobe -r spca5xx
sudo rm -rf /lib/modules/`uname -r`/kernel/drivers/usb/media/spca5xx*
Install the new files:
Code:
sudo make install
sudo modprobe spca5xx
Testing
Whenever you plug your camera in, the green light should light up and typing
into the console should show the spca5xx module being loaded.
A good program to install in order to test your camera is camorama, it can be installed by typing
Code:
sudo apt-get install camorama
and accessed from the Applications menu under Graphics.
Comments
In writing this I borrowed from the Ubuntu wiki page which described installing a version on Breezy at https://help.ubuntu.com/community/Spca5xx. I didn't originally use that page when I figured out how to do this, but it was close enough since I cannot recall which page I used prior.
Hopefully, this has been helpful for anyone trying to get this webcam working, if you have any questions or suggestions post here so I can try to help.