mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
24 lines
494 B
Plaintext
24 lines
494 B
Plaintext
# Display available libraries
|
|
ldconfig -p
|
|
|
|
# Update library resources
|
|
ldconfig
|
|
|
|
# Display libraries and file location
|
|
ldd
|
|
|
|
# Libraries available to apps in real-time
|
|
"Dynamic Libraries" (.so.)
|
|
|
|
# Libraries only available to apps when installed (imported)
|
|
"Static Libraries" (.a.)
|
|
|
|
# Standard (usual) library file location
|
|
/lib
|
|
|
|
# Sofware-accessible source for library info
|
|
/etc/ld.so.cache # (binary)
|
|
|
|
# Human-readable source for library info
|
|
/etc/ld.so.conf # (points to /etc/ld.so.conf.d)
|