From 3e90d69a341fc136cd9ec8b6fec305911e92c555 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Wed, 11 Oct 2017 17:31:20 +0530 Subject: [PATCH] ldconfig: add page (#1536) --- pages/linux/ldconfig.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/linux/ldconfig.md diff --git a/pages/linux/ldconfig.md b/pages/linux/ldconfig.md new file mode 100644 index 0000000000..a8ee1d5a5e --- /dev/null +++ b/pages/linux/ldconfig.md @@ -0,0 +1,15 @@ +# ldconfig + +> Configure symlinks and cache for shared library dependencies. + +- 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}}`