mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 14:48:47 +00:00
Update cheatsheets
This commit is contained in:
30
linux/ldd
Normal file
30
linux/ldd
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# ldd
|
||||
|
||||
> Display shared library dependencies of a binary.
|
||||
> Do not use on an untrusted binary, use objdump for that instead.
|
||||
> More information: <https://manned.org/ldd>.
|
||||
|
||||
- Display shared library dependencies of a binary:
|
||||
|
||||
`ldd {{path/to/binary}}`
|
||||
|
||||
- Display all information about dependencies:
|
||||
|
||||
`ldd --verbose {{path/to/binary}}`
|
||||
|
||||
- Display unused direct dependencies:
|
||||
|
||||
`ldd --unused {{path/to/binary}}`
|
||||
|
||||
- Report missing data objects and perform data relocations:
|
||||
|
||||
`ldd --data-relocs {{path/to/binary}}`
|
||||
|
||||
- Report missing data objects and functions, and perform relocations for both:
|
||||
|
||||
`ldd --function-relocs {{path/to/binary}}`
|
||||
Reference in New Issue
Block a user