6

I am using Ubuntu 14.04 and have tried the suggestions in the following post: skype: error while loading shared libraries: libXss.so.1: cannot open shared object file: No such file or directory and still get the same error

eshwar
  • 788
  • 5
  • 9
  • 20
  • ls -l /usr/lib/x86_64-linux-gnu/libXv.so.1 lrwxrwxrwx 1 root root 14 Jan 21 10:44 /usr/lib/x86_64-linux-gnu/libXv.so.1 -> libXv.so.1.0.0 – eshwar Apr 26 '14 at 02:07
  • 1
    sudo apt-get install --reinstall libxv1:amd64 did not help. I get the same error. – eshwar Apr 26 '14 at 06:01

1 Answers1

9

Locating the file,

$ locate /usr/lib/x86_64-linux-gnu/libXv.so.1
/usr/lib/x86_64-linux-gnu/libXv.so.1
/usr/lib/x86_64-linux-gnu/libXv.so.1.0.0

Finding the package which provides the above files,

$ dpkg -S /usr/lib/x86_64-linux-gnu/libXv.so.1
libxv1:amd64: /usr/lib/x86_64-linux-gnu/libXv.so.1
$ dpkg -S /usr/lib/x86_64-linux-gnu/libXv.so.1.0.0
libxv1:amd64: /usr/lib/x86_64-linux-gnu/libXv.so.1.0.0

So, you have to install libxv1:i386 package. Because skype is available only for 32 bit version so it needs only a 32 bit version of library files not 64 bit version.

sudo apt-get install libxv1:i386

And don't forget to add i386 architecture before running the above command on 64 bit systems.

sudo dpkg --add-architecture i386
Avinash Raj
  • 77,204
  • 56
  • 214
  • 254