Page 1 of 1

webcam

Posted: 27 Jun 2012, 13:01
by ralcocer
Has anybody get a webcam and skipe to work with Porteus?

Re: webcam

Posted: 27 Jun 2012, 17:42
by mailmegx
hi ralcocer

I have skype working with webcam, my webcam is a genius plug and play so no drivers needed and works well, I usually download skype static, extract and run , there is one issue with a missing lib file so I made this simple script:

Code: Select all

bash-4.1$ cat `which skype.run `
if [ ! -f /usr/lib/libtiff.so.4 ]; then
    if [ -f /usr/lib/libtiff.so.3 ]; then
	su -c "cp /usr/lib/libtiff.so.3 /usr/lib/libtiff.so.4"
    fi
fi
/mnt/sys/bin/skype/skype &
bash-4.1$ 
Regards

GX