08-10-2020, 11:42 PM
@Meestor_X
Let's see what happens when I query a current 6.7.1 system:
So, there's actually only one real file: /usr/lib/arm-linux-gnueabihf/libzzip-0.so.13.0.62
Then there's a link to it: /usr/lib/arm-linux-gnueabihf/libzzip-0.so.13
Then there's 3 links to that link.
You might be missing the actual file or one or more of the links or both. You should try the same command on your moOde player to see what's actually there.
Assuming it's the file itself, let's ask the RaspberryPi OS repository what package contains libzzip-0
Ok, so you could try reinstalling it by executing this command
Will this restore missing links? I don't know without examining the contents of the package. If it doesn't, then you could try recreating them by hand. This requires using the 'ln' command. I'll hold off until you tell us what's actually present on your system.
Regards,
Kent
Let's see what happens when I query a current 6.7.1 system:
Code:
pi@moodeVU:~ $ sudo find / -name libzzip-0.so\* -exec ls -l \{\} \;
lrwxrwxrwx 1 root root 15 Mar 4 2019 /usr/lib/arm-linux-gnueabihf/libzzip-0.so.10 -> libzzip-0.so.13
lrwxrwxrwx 1 root root 15 Mar 4 2019 /usr/lib/arm-linux-gnueabihf/libzzip-0.so.12 -> libzzip-0.so.13
lrwxrwxrwx 1 root root 15 Mar 4 2019 /usr/lib/arm-linux-gnueabihf/libzzip-0.so.11 -> libzzip-0.so.13
lrwxrwxrwx 1 root root 10 Mar 4 2019 /usr/lib/arm-linux-gnueabihf/libzzip-0.so -> libzzip.so
lrwxrwxrwx 1 root root 20 Mar 4 2019 /usr/lib/arm-linux-gnueabihf/libzzip-0.so.13 -> libzzip-0.so.13.0.62
-rw-r--r-- 1 root root 22416 Mar 4 2019 /usr/lib/arm-linux-gnueabihf/libzzip-0.so.13.0.62
So, there's actually only one real file: /usr/lib/arm-linux-gnueabihf/libzzip-0.so.13.0.62
Then there's a link to it: /usr/lib/arm-linux-gnueabihf/libzzip-0.so.13
Then there's 3 links to that link.
You might be missing the actual file or one or more of the links or both. You should try the same command on your moOde player to see what's actually there.
Assuming it's the file itself, let's ask the RaspberryPi OS repository what package contains libzzip-0
Code:
pi@moodeVU:~ $ apt-cache search libzzip-0
libzzip-0-13 - library providing read access on ZIP-archives - library
Ok, so you could try reinstalling it by executing this command
Code:
sudo apt-get install libzzip-0-13
Will this restore missing links? I don't know without examining the contents of the package. If it doesn't, then you could try recreating them by hand. This requires using the 'ln' command. I'll hold off until you tell us what's actually present on your system.
Regards,
Kent