> /lib32/libdbus-1.so
> /lib32/libdbus-1.so.3
> /lib32/libdbus-1.so.3.5.2
So 10.10 has version 3.5.2 which is installed as /lib32/libdbus-1.so.3.5.2 and -
in addition - linked as /lib32/libdbus-1.so.3 and /lib32/libdbus-1.so
>
> Code:
> root at john-GA-MA78LM-S2H:/usr/lib32# ls libdbus*
> libdbus-glib-1.so libdbus-glib-1.so.2 libdbus-glib-1.so.2.1.0
>
>
>
Ahem that library is supposed to be in /lib32 not in /usr/lib32. That's what
my "cd /usr/lib32 ; ln -s /lib32/libdbus-1.so.3.4.0 libdbus-1.so"
meant: Go to /usr/lib32 and create a link named "libdbus-1.so" to that
/lib32/libdbus-1.so.3.4.0 file (in the now current directory).
For Ubuntu 10.10 this would be:
Code:
cd /usr/lib32
ln -sfv /lib32/libdbus-1.so.3.5.2 libdbus-1.so
or preferred, for any Ubuntu version:
Code:
cd /usr/lib32
ln -sfv /lib32/libdbus-1.so libdbus-1.so
The additional parameters mean -f: overwrite old symlink if necessary; -v Write
what was done to terminal