On Thu, Dec 9, 2010 at 17:02, John Jason Jordan <[email protected]> wrote: > $ ldd $(which ksysguard) > <snipped a couple pages of stuff> > libnvidia-tls.so.260.19.21 => not found > libnvidia-glcore.so.260.19.21 => not found > > $ ldd $(which fontmatrix) > <snipped more stuff> > libnvidia-tls.so.260.19.21 => not found > libnvidia-glcore.so.260.19.21 => not found
Try running the following to get a dependency list. It's unlikely that fontmatrix is referencing libnvidia-tls directly. This should at least tell you which library is referencing your missing file. $ ldd -v $(which ksysguard) $ ldd -v $(which fontmatrix) If you can't find it in the list or it's listed under the executable itself, then it might be because 'prelink' (http://en.wikipedia.org/wiki/Prelink) needs to get re-run. Prelink rewrites library dependency information in the executable itself to speed up loading but I'm not exactly sure how it works behind the scenes; not sure how it handles loading libraries or finding when something gets deleted. It's normally run on *nix systems via a system cron, but if you've got cron disabled or it only runs once a week, then it might be partially responsible. Cheers, Daniel Hedlund [email protected] _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
