Results 1 to 4 of 4

Thread: linux command to show processes

  1. #1
    Join Date
    Jan 2009
    Posts
    180

    linux command to show processes

    I have Ubuntu linux installed. I have no problem in using Linux when it is the Graphical User Interface. I'm quite weak with commands. I want to know which command shows the process manager like the windows task manager. Or any other some related command would help too. Thanks!

  2. #2
    Join Date
    Apr 2008
    Posts
    3,267

    Re: linux command to show processes

    To see currently running process use the command :
    Code:
    ps
    To get information about all running process use the command :
    Code:
    ps -ag

  3. #3
    Join Date
    Jan 2009
    Posts
    710

    Re: linux command to show processes

    To stop any process by PID i.e. to kill process :
    Code:
    kill (PID)
    Example :
    Code:
    kill  1012
    To stop processes by name i.e. to kill process :
    Code:
    killall (Process-name)
    Example :
    Code:
    killall httpd

  4. #4
    Join Date
    Mar 2009
    Posts
    599

    Re: linux command to show processes

    To stop all process except your shell :
    Code:
    kill 0
    To display the owner of the processes along with the processes :
    Code:
    ps aux
    To display a tree of processes :
    Code:
    pstree

Similar Threads

  1. Processes and Signals in Linux
    By Adiran in forum Operating Systems
    Replies: 5
    Last Post: 29-12-2010, 07:00 AM
  2. Replies: 6
    Last Post: 09-09-2010, 12:15 AM
  3. Show All Running Processes in mac os x
    By chaosblade in forum Operating Systems
    Replies: 3
    Last Post: 26-08-2009, 08:49 AM
  4. Linux history command and fc command
    By Alkesh jain in forum Operating Systems
    Replies: 3
    Last Post: 26-05-2009, 07:53 PM
  5. show the DNS with linux command if possible
    By CLONEOPS in forum Technology & Internet
    Replies: 5
    Last Post: 25-02-2009, 11:39 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,717,386,731.35687 seconds with 16 queries