1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/linux/ldconfig.md
2021-08-16 12:34:01 +02:00

441 B

ldconfig

Configure symlinks and cache for shared library dependencies. More information: https://manned.org/ldconfig.

  • 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}}