I wrote this little script below to fetch the missing 32-bit libs and
unpack them to the right place (run it as sudo):

#!/bin/bash

mkdir /tmp/skype
mkdir /tmp/skype/tmp
cd /tmp/skype

wget 
http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqtgui4_4.4.1-0ubuntu2_i386.deb
wget 
http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqt4-network_4.4.1-0ubuntu2_i386.deb
wget 
http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqtcore4_4.4.1-0ubuntu2_i386.deb
wget 
http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqt4-xml_4.4.1-0ubuntu2_i386.deb

dpkg -x libqtgui4_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp
dpkg -x libqt4-network_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp
dpkg -x libqtcore4_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp
dpkg -x libqt4-xml_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp

cp -a /tmp/skype/tmp/usr/lib/* /usr/lib32/

-- 
ia32-libs missing libQtDBus, others?
https://bugs.launchpad.net/bugs/271550
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to