The POSIX duo for process inspection — available on every Unix-like system without installation:
ps— snapshot of processes at a point in time. Classic invocations:ps aux,ps -ef,ps -eo pid,ppid,user,cmd.top— interactive, refresh-every-N-seconds view of CPU and memory. Universal across distributions, even in stripped-down containers.
An analyst pairs these with lsof -i, ss -tulpan, and /proc/<pid>/ (cwd, exe, fd, environ, status) for full process context.