top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to find out that how many processes are running on your linux machine?

+1 vote
434 views
How to find out that how many processes are running on your linux machine?
posted Feb 23, 2016 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+2 votes

" ps aux | wc -l " will give the total no. of processes running in the linux machine.

answer Feb 23, 2016 by Vimal Kumar Mishra
+2 votes

ps -eaf | wc -l

answer Feb 24, 2016 by Yogesh Kumar
...