If you write this: ls -la /usr/lib/ | grep FLAC lrwxrwxrwx 1 root root 16 Oct 26 23:20 libFLAC.so.8 -> libFLAC.so.8.2.0 lrwxrwxrwx 1 root root 35 Oct 26 23:20 libFLAC.so.8.2.0 -> /opt/maemo/usr/lib/libFLAC.so.8.2.0 It should show this: libFLAC.so.8.2.0 -> /opt/maemo/usr/lib/libFLAC.so.8.2.0 means that it's just symlink to /opt/. Just write: cp /opt/maemo/usr/lib/libFLAC.so.8.2.0 /usr/lib/libFLAC.so.8.2.0 If you wan't to try fix what helped for me.