MSI Wind comes with three different webcam models: Macromedia Pavilion, Acer Bison and Genesys Logic Inc. Webcams. To learn which webcam you have on your MSI Wind netbook, issue the lsusb command from the terminal, the output of this command will give you the manufacturer.
Upon completion of the installation, we expect the webcams to work out of the box. However, things happen and you may run into problems. We will go through the steps for all three webcams.
Macromedia’s Pavilion webcam works out of the box but may freeze Cheese program when you try to record videos. It is best to update the drivers, since this bug is a work in progress and known by the developers in Berlios. If you’re experiencing low refresh rates with your webcam, lower the resolution to 640x480.
Acer’s BisonCam also works out of the box, but in order to get everything going, you have to recompile the drivers. The drivers are hosted in LinuxTV.org, and you can just download them to your computer (create a Downloads folder and save your downloaded files there. I assume you will have this folder in your netbook). The file you downloaded will be something as tip.source.tar.gz.
Open up a terminal, switch to root and issue the following commands in order:
apt-get install subversion build-essential linux-headers-$(uname-r)
cd ~/Downloads
tar -zxvf tip.source.tar.gz (a directory with the name like uvcvideo-xxx will be created)
cd uvcvideo-xxx
make
make install
depmod -ae $(uname-r)
Restart your computer.
There are experimental drivers hosted on Sourceforge.net for the Genesys Logic Inc.’s webcam, which has a non-UVC compliant gl860 chipset. The driver is in alpha stage, so proceed with caution. Download the driver from the website to your Downloads directory, and then issue the following commands:
cd ~/Downloads
tar -zxvf gl860-xxx.tgz (xxx stands for the release version, replace it with the filename)
cd gl860-xxx
make
make install
depmod -ae $(uname-r)
Since this is an alpha release, the above codes should work fine but as of this writing, the installation procedure might have changed. Check the readme file that is in the tgz file you have downloaded.