snippetbashTip
ldconfig — Configure symlinks and cache for shared library dependencies. More information: <https://manned.org/
Viewed 0 times
ldconfigcommandsymlinksandconfigurecacheclifor
linux
Problem
How to use the
ldconfig command: Configure symlinks and cache for shared library dependencies. More information: <https://manned.org/ldconfig>.Solution
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 ldconfigUpdate 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|--print-cache]}} | grep {{library_name}}Code Snippets
Update symlinks and rebuild the cache (usually run when a new library is installed)
sudo ldconfigUpdate 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|--print-cache]}} | grep {{library_name}}Context
tldr-pages: linux/ldconfig
Revisions (0)
No revisions yet.