Attila Bukta, PhD
Home > Linux, Unix > How do I know what services I have running?

How do I know what services I have running?

August 21st, 2008 Leave a comment Go to comments

To get a list of all running processes, enter the command “ps auxw”. You might also want to try using “ps auxf” (or “ps auxfw” if the lines get truncated) – this prints everything in a nice tree format that may give you a better understanding of how and why things are running.

To get a complete listing of all listening network services using netstat, enter: netstat -altpu

You can also get similar information using lsof by entering: lsof -i | egrep -i ‘LISTEN|UDP’

  1. No comments yet.
  1. No trackbacks yet.
You must be logged in to post a comment.