Skype is a software to make free video and voice calls, send instant messages and share files with other Skype users. You can use Skype in almost famous platforms: Windows, Linux, Mac OS and for your mobiles as well. For Linux users, you can easily download and install Skype binary package from here.
With the 32-bit Ubuntu box, you simply just plug Webcam or use build-in webcam, turn Skype and enjoy chatting with your girlfriend, however with the 64-bit counterpart, you have to do some tricks to make it works. Otherwise, you can’t see anything even you still can see camera file in /dev/video0
1. You have to locate v4l1compat.so library in your system. User Terminal and type this:
$ find / -name v4l1compat.so 2>/dev/null /usr/lib/libv4l/v4l1compat.so /usr/lib32/libv4l/v4l1compat.so
Use /dev/null to ignore errors can appear during searching for that lib.
2. You then have to load that library before other Skype libs by using LD_PRELOAD. You can read this article to see how LD_PRELOAD works: Modifying a Dynamic Library Without Changing the Source Code
So now create a file in anywhere you like with this folowing content:
#!/bin/bash LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype
And don’t forget to set execute permission to that file (chmod u+x ./yourfile).
Related posts:
- Howto Stream Video Over Network Using OpenCV I am currently doing one project about Mobile Robot Teleoperation, so stream video over network is one of my part. Actually there are many different approaches, but I chose OpenCV as my main approach because of its advantages in term of Computer Vision. But the crazy thing I have to do is making 2 server [...]...
- How to backup and restore the Ubuntu system In this post, I would like to introduce the easiest way to backup and restore the Ubuntu system from my experiences.For more information about backup and restore you can see this post I am usually doing crazy with my system so it is really necessary to backup the system file before dong such things Backup [...]...
- Sound Solutions on Ubuntu system I had great chance to visit ubuntuforums.org when I tried to finger out the sound solution of Ubuntu system because the sound is not really good enough compared to listen in Windows OS. The threat is very great, you can see here. And now they update some information for Ubuntu Jaunty 9.04 here. This post [...]...
- Howto Install and setup TFTPD in Ubuntu workstation I was doing my own project using TMS320DM355 EVM with MontaVista realtime Linux is installed some months ago. At that time, I search in Google many times but I didn’t get success to install TFTP. Finally, I found out one great tutorial about that. In my system, I use TFTP protocol to download Linux kernel, [...]...
- How to setup Dual Monitor in Ubuntu 9.04 with ATI Driver I am working in my Lab with 2 19′ LCD Monitors. I have search Google about this issue when I finished installing Ubuntu 9.04 and I was unable to configure to use 2 monitors. My desktop computer’s configuration: Intel(R) Core(M) 2 Quad CPU Q6600 DDR3 4GB ATI Radeon HD2600XT After I try to install ATI [...]...
- UART Lib for PIC18 in HTPIC18 compiler I am a PIC programmer, so I would like to share this library I made before and hopy you can improve to make it better and to be perfect. This souces is made under PIC18 compiler. I have tested this lib under some chips and it works well. UART Library description and source 1. sysdef.h [...]...


