user5400132
user5400132

Reputation: 95

Where can I find all possible processes in a Linux system?

Can I find all possible processes for a Linux system (Ubuntu)? Not just currently running ones but all that would be there if all native processes were up.

Upvotes: 0

Views: 52

Answers (2)

willscripted
willscripted

Reputation: 1456

System processes? In Ubuntu 15.04+, all the services that run under systemd can be found with

systemctl list-units -t service

That says nothing of services users start or services started by other services, though.

Upvotes: 0

Joan Esteban
Joan Esteban

Reputation: 1021

To check all available process that can be 'live' you can find all executables in system:

sudo find / -executable -type f

Notice that this will also report libraries. This will check along all filesystems mounted at this moment

Upvotes: 1

Related Questions