Linux Skype Webcam Fix
I recently upgraded from Debian 5 to 6 and suddenly the video skype stopped working.
I google and found this link that fixed the problem, the text is well written and I recommend reading.
But I had to replace the dir
That's all folks!
Thanks Jestin for posting this fix.
I google and found this link that fixed the problem, the text is well written and I recommend reading.
But I had to replace the dir
/usr/local/lib by /usr/lib, so the fix for Debian 6 is:- Install
libv4l-0package. - Create the directory
~/bin, if you do not have abinin your home directory. - Be sure that
~/bindir comes before/usr/binin yourPATHenvironment variable. - Create the file
~/bin/skype. - Change file permission:
chmod a+x ~/bin/skype - The
~/bin/skypefile content with the replacement is:#!/bin/bash
export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so
/usr/bin/skype
That's all folks!
Thanks Jestin for posting this fix.
