0

When I try to launch nautilus i got this error:

nautilus: error while loading shared libraries: libunity.so.6: cannot open shared object file: No such file or directory

I got the same with Marlin & Brasero.

I have tried this command:

sudo ln -s /usr/lib/libunity.so.9 /usr/lib/libunity.so.6

but it doesn't work at all.

Im going to cry... Please help me!

kOol
  • 1

1 Answers1

1

Are you on Oneiric? You could try

sudo apt-get install --reinstall libunity6

How to obtain this answer?

I first used

ldd /usr/bin/nautilus | grep unity

to check that it indeed needs libunity.so.6 on my machine as well. Then i ran

dpkg -S /usr/lib/libunity.so.6

to find out what package contains that file. It turns out that the package is libunity6. So it makes sense to try to reinstall it, which is what the above command does.

Timo Kluck
  • 9,173