2017-10-11 13:01:20 +01:00
|
|
|
# ldconfig
|
|
|
|
|
|
|
|
> Configure symlinks and cache for shared library dependencies.
|
2021-08-16 11:34:01 +01:00
|
|
|
> More information: <https://manned.org/ldconfig>.
|
2017-10-11 13:01:20 +01:00
|
|
|
|
|
|
|
- Update symlinks and rebuild the cache (usually run when a new library is installed):
|
|
|
|
|
|
|
|
`sudo ldconfig`
|
|
|
|
|
|
|
|
- Update the symlinks for a given directory:
|
|
|
|
|
|
|
|
`sudo ldconfig -n {{path/to/directory}}`
|
|
|
|
|
|
|
|
- Print the libraries in the cache and check whether a given library is present:
|
|
|
|
|
|
|
|
`ldconfig -p | grep {{library_name}}`
|