Table of Contents

An Application Cannot Find Libraries/Files

Symptoms

 [name]: error while loading shared libraries: [library].so.*: cannot open shared object file: No such file or directory

Explanation

The program is missing some files it needs to run. This is caused by the package information missing a reference to another, or not including the file.

Solution

Check if the file required is available in another package. Use the package manager (TazPkg) to search for the file:

Alternatively, run the following command from a terminal:

tazpkg search-pkgname library.so

… and install the appropriate package with:

 tazpkg get-install [package] 

If no packages are given, report this as a bug over at the Labs as it needs to be included, or the dependency removed during the build.