Solved Kodi Won't Load on Manjaro on New XPS 9530 - Complains About Shared Libraries - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52) +---- Thread: Solved Kodi Won't Load on Manjaro on New XPS 9530 - Complains About Shared Libraries (/showthread.php?tid=375496) |
Kodi Won't Load on Manjaro on New XPS 9530 - Complains About Shared Libraries - jrubenol - 2023-12-22 System Specs: Quote:Operating System: Manjaro Linux When I try to load Kodi I'm getting the following error: Quote:/usr/lib/kodi/kodi.bin: error while loading shared libraries: libunibreak.so.5: cannot open shared object file: No such file or directoryHave Kodi running fine on a similar machine in my home so not sure what the problem is. Google hasn't helped. EDIT: I'm noticing it's using intel graphics....I have an NVIDIA 4060 so trying to figure out what's going on there. Maybe that's the whole issue. Thank you! RE: Kodi Won't Load on Manjaro on New XPS 9530 - Complains About Shared Libraries - graysky - 2023-12-22 You appear to be missing a so so either you're missing a dep (hint look for which package supplies that file) or your mirror is out of date and that is an older version of the so. On Arch (not Manjaro): Code: % pkgfile libunibreak.so.5 Do you have that package installed? RE: Kodi Won't Load on Manjaro on New XPS 9530 - Complains About Shared Libraries - jrubenol - 2023-12-23 Did the trick. Thank you. No idea why it didn't install with Kodi when I installed it. Never had to go and search for it like I did this time. RE: Kodi Won't Load on Manjaro on New XPS 9530 - Complains About Shared Libraries - graysky - 2023-12-23 They might be missing a dep in their libass package. I gotta say their web interface for their packages is horrible. On Arch Linux, one of kodi's dependencies is libass. That in turn has a depends of libunibreak among others. Code: % pacman -Qi libass | grep Depends Apparently the manjaro package for libass lacks that dependency (you have to click the blue details icon). You should report a bug against their package. |