mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-19 01:50:04 +00:00
Update cheatsheets
This commit is contained in:
21
linux/ldconfig
Normal file
21
linux/ldconfig
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user