mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
ldconfig: add page (#1536)
This commit is contained in:
parent
1f7694753f
commit
3e90d69a34
1 changed files with 15 additions and 0 deletions
15
pages/linux/ldconfig.md
Normal file
15
pages/linux/ldconfig.md
Normal file
|
@ -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}}`
|
Loading…
Add table
Reference in a new issue