floss.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
For people who care about, support, and build Free, Libre, and Open Source Software (FLOSS).

Administered by:

Server stats:

691
active users

$ pldd 93455
93455: /usr/bin/sshd
linux-vdso.so.1
/lib64/libcrypto.so.3
/lib64/libz.so.1
/lib64/libc.so.6
/lib64/ld-linux-x86-64.so.2

look ma, no libsystemd, no libxz (and yet Type=notify).

@bugaevc huh, TIL `pldd`. one of those things I'd never think to look for instead of just `grep \.so /proc/pid/maps`
Sergey Bugaev

@mr64bit yeah, it's relatively little known. grepping/proc/pid/maps will usually produce a similar result indeed, but the big difference is pldd looks at the actual link map in the processes memory, i.e. glibc loader's (in that process) actual idea of which libraries are loaded (and for what sonames), as opposed to asking the kernel for the complete list of mmapped files and picking out the ones that look like shared libraries.