[root@ elf]# ldconfig -p
939 libs found in cache `/etc/ld.so.cache'
libz.so.1 (libc6,x86-64) => /usr/lib64/libz.so.1
libz.so.1 (libc6) => /usr/lib/libz.so.1
libz.so (libc6,x86-64) => /usr/lib64/libz.so
What does it mean?
What does it mean? |
|||
|
|
|
It just shows which libraries the dynamic linker keeps it in cache and where to find them. This is done so that programs can find libraries they need independent of where they are stored and to reduce start times for programs, because they don't need to be searched at startup, just looked up in the cache and loaded. In the case of Lastly, the differentiation between |
|||
|
|