Skype video with Ubuntu 9.10

November 18, 2009 · Posted in Computer 

I had to reinstall Kubuntu, for a reason that I will write about later, so I needed to reinstall skype.  When I downloaded and tried  the 2.1 beta, I wasn’t able to get video to work.

I was able to use the instructions on this page to get video working.  You need to launch skype with the following command line:

LD_PRELOAD=/usr/lib/libv41/vl1compat.so skype

Bookmark and Share

Comments

4 Responses to “Skype video with Ubuntu 9.10”

  1. Matt Shenton on January 11th, 2010 8:15 pm

    Hi,

    Thanks for this info. I’m totally new to the linux world. After my XP packed up, I just decided to give it a whirl, but I need Skype to talk to my parents and others who are unliklely to use anything else.

    So, I’m on Kubuntu 9.10 which I really, really like, but only just beginning to work out how to use.

    The LD_PRELOAD from the command line worked nicely (Quickcam connect).

    But , if you have time could you possibly indicate (for an absolute beginner) what it is I’d need to edit so I don’t have to use the command line every time to open Skype?

    Many thanks
    Matt

  2. pwestbro on January 11th, 2010 10:22 pm

    What I did was rename the skype binary, and then replace create a script with the old name.

    For example,

    sudo mv /usr/bin/skype /usr/bin/skype.real
    cat > /usr/bin/skype < #!/bin/bash
    LD_PRELOAD=/usr/lib/libv41/vl1compat.so skype
    EOF
    sudo chmod +x /usr/bin/skype

  3. kroon78 on February 20th, 2010 10:51 pm

    Thanks for the tip mate, worked like a charm!

  4. Danielsnojack on March 7th, 2010 3:13 am

    Nice joke PWESTBRO !
    It is neverending loop, if your script is calling himself.
    The right comandis this:

    #!/bin/bash
    LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype.real

    Bye !

Leave a Reply