Install two utilities which are needed to build drivers if you do not have them - trying a second time does not cause a problem
sudo apt-get install build-essential
Install subversion if you do not already have it by:
sudo apt-get install subversion
Then get that latest source from the Berlios UVC subversion repository with:
svn checkout svn://svn.berlios.de/linux-uvc/linux-uvc/trunk
This will create a folder called 'trunk' containing the source in your current directory (/home/username)
You now need the kernel header files package specific to your CPU architecture, for example, linux-headers-2.6.24-43-generic . You can use uname -r to get the current version like this (Note they are back quotes, it is easiest to cut and paste otherwise they are at top left of keyboard):
sudo apt-get install linux-headers-`uname -r`
Navigate to the 'trunk' directory containing the source and run make:
cd trunk
make uvcvideo
Ubuntu is non standard and keeps the kernel module for UVC in /lib/modules/your kernel/ubuntu/media/usbvideo and the makefile which has been created has to be edited slightly to install to the correct directory. Open the the makefile in a text editor:
sudo gedit Makefile
and search for and change
INSTALL_MOD_DIR := usb/media
to
INSTALL_MOD_DIR := ubuntu/media/usbvideo
then run
________________________________
До этого момента все сделал а что дальше, как выполнить остольное не выходя из терминала продолжать тупо вставлять эти коды ? или что ?? остольное делать не выходя из коталога trun
sudo make install
Update dependencies using depmod
sudo depmod -a
Unload the original modules by
sudo modprobe -r uvcvideo
Plug in your camera and enter the following command to insert the new modules:
sudo modprobe uvcvideo