Y
Hacker News
new
|
ask
|
show
|
jobs
by
bruce_one
75 days ago
eBPF is a great tool to use for debugging this kind of thing too, e.g. [bpftrace](
https://bpftrace.org
) has an [execsnoop](
https://github.com/bpftrace/bpftrace/blob/master/tools/execs...
) script for looking at everything being exec'd on the system :-)
(No need to use bpftrace, just an easy example :-) )
1 comments
repiret
75 days ago
Or just `strace`.
link
raddan
75 days ago
Seconded. Way simpler than BPF, especially when all you want to see is syscalls.
link