LoginSignup
7
7

More than 5 years have passed since last update.

libc.so をつかんでいるプロセス一覧

Last updated at Posted at 2015-02-12

CentOS Blog にあった lsof | grep libc | grep DEL が何の役にも立たなかったので、代替として、プロセス一覧を取得するワンライナー。

grep '\<libc\>' /proc/[0-9]*/maps | sed 's:^/proc/::; s:/maps.*$::' | uniq | sort | xargs | tr ' ' ',' | xargs ps kstart_time -f -p

typo 修正
所得 -> 取得

7
7
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7