I found this little gem because I wanted to see how my raspberry pi was handling one running process. You can use the top command to see the running processes:
1
top
You will probably have a bunch of zombie processes you don’t care about. To omit those use:
1
top -i
linux
productivity
]