barrymcl wrote: > > The second file, libperl.so.5.32, does not exist on my system. I > assume that the file needed here is: > /usr/lib/perl5/5.32.0/x86_64-linux-thread-multi/CORE/libperl.so > which exists and has universal read permissions. > (I have no experience with openSUSE, so this is a generic answer) The libperl*.so files have to be in a location where the dynamic linker can find them. /usr/lib/perl5/5.32.0/x86_64-linux-thread-multi/CORE/ isn't searched by default. First, check if other programs depending on libperl can find it: ldd /usr/bin/vi | grep -i libperl should give you a path ( if you get libperl.so => not found, your system has some serious issues) Next, check if ldd /usr/share/squeezeboxserver/CPAN/arch/5.32/x86_64-linux-thread-multi/auto/XML/Parser/Expat/Expat.so | grep -i libperl works (probably not) If so, you have two options - brute force cd /usr/lib && ln -s /usr/lib/perl5/5.32.0/x86_64-linux-thread-multi/CORE/libperl.so* .
- not as brute: check if /etc/ld.so.conf contains a line like: include ld.so.conf.d/*.conf if it does, create the file /etc/ld.so.conf.d/99libperl.conf with the line /usr/lib/perl5/5.32.0/x86_64-linux-thread-multi/CORE (also, check the output of grep perl /etc/ld.so.conf.d/* for existing perl entries) if it doesn't, add the line to /etc/ld.so.conf then: run /sbin/ldconfig check ldd /usr/share/squeezeboxserver/CPAN/arch/5.32/x86_64-linux-thread-multi/auto/XML/Parser/Expat/Expat.so | grep -i libperl If you still have access to a working system, you can check if one of these methods was used previously. 'Various SW' (https://www.nexus0.net/pub/sw/): Web Interface | TUI | Playlist Editor / Generator | Music Classification | Similar Music | Announce | EventTrigger | Chiptunes | LMSlib2go | ... 'Various HowTos' (https://www.nexus0.net/pub/documents/LMS/): build a self-contained LMS | Bluetooth/ALSA | Control LMS with any device | ... ------------------------------------------------------------------------ Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808 View this thread: http://forums.slimdevices.com/showthread.php?t=113356 _______________________________________________ Squeezecenter mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/squeezecenter
