Dell Vostro 1400 laptops can be configured with built-in webcam, which seems to be from Creative. I believe that 1500 and 1700 series come with same type of webcam. These instructions are compiled from couple of forums I found on the topic.
Symptoms
- Built-in webcam not recognized by Ubuntu 7.10 default setup
- Check if you have svn installed, if not add the "subversion" package with Synaptic or apt-get.
- Download svn trunk with command:
svn checkout svn://svn.berlios.de/linux-uvc/linux-uvc/trunk - open file uvc_driver.c and insert the following code:
/* after line 1661 */
/* OmniVision OEM Dell Notebook */
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
| USB_DEVICE_ID_MATCH_INT_INFO,
.idVendor = 0x05a9,
.idProduct = 0x2640,
.bInterfaceClass = USB_CLASS_VIDEO,
.bInterfaceSubClass = 1,
.bInterfaceProtocol = 0,
.driver_info = UVC_QUIRK_PROBE_MINMAX }, - Compile and install by running the following commands in terminal. Be sure you are in the "trunk" folder while doing that:
sudo make
sudo make install - Load driver with:
sudo modprobe uvcvideo
video group
To make the webcam available for other users, you need to make them members of the video group (I believe that the video group was created in the install step). On the Hardy Haron (8.04 LTS) this step was not needed. All the users had access to my webcam.
After the install process your webcam will be available after each boot automatically. I tested the webcam with Skype and aMSN.
1 comment:
Please post your Linux compatibility reviews for this product at http://ubuntuhcl.org/browse/product+dell-vostro-1400?id=808
Post a Comment