How to interpret the output of the ldd program?
the first line is the VDSO. this is described in depth in the vdso(7) manpage. basically it’s a shared library that’s embedded in your kernel and automatically loaded whenever a new process is exec-ed. that’s why there’s no filesystem path on the right side — there is none! the file only exists in the kernel … Read more