瀏覽代碼

ldconfig: add page (#1536)

Agniva De Sarker 7 年之前
父節點
當前提交
3e90d69a34
共有 1 個文件被更改,包括 15 次插入0 次删除
  1. 15 0
      pages/linux/ldconfig.md

+ 15 - 0
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}}`