Results 1 to 3 of 3

Thread: A quesion with "ps -aux"

  1. #1
    Join Date
    Apr 2009
    Beans
    1,012

    A quesion with "ps -aux"

    Code:
    ps -aux
    Code:
    USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
    root        22  0.0  0.0      0     0 ?        S<   May25   0:00 [ata/0]
    root      2363  0.0  0.0   1808   524 tty4     Ss+  May25   0:00 /sbin/getty 384
    root      2859  0.0  0.2  17508  2684 ?        Ssl  May25   0:00 /usr/sbin/conso
    root      3329  4.5  4.0  83568 41172 tty7     Rs+  May25   2:20 /usr/X11R6/bin/
    111       3201  0.0  0.4   6664  4368 ?        Ss   May25   0:00 /usr/sbin/hald
    What does it mean by
    1. S<
    2. Ss+
    3. Ssl
    4. Rs+
    5. tt4
    6. tt7
    7. Ss
    8. VSZ
    9. RSS

    Last row what kind of user "111" it is?

  2. #2
    Join Date
    Sep 2006
    Location
    Dublin IE
    Beans
    3,275
    Distro
    Ubuntu

    Re: A quesion with "ps -aux"

    Hi there,
    1. S< - High priority, sleeping
    2. Ss+ - Foreground process, session leader, sleeping
    3. Ssl - Multi-threaded, session leader, sleeping
    4. Rs+ - Foreground process, session leader, running
    5. tty4 - Process attached to terminal tty4
    6. tty7 - Process attached to terminal tty7
    7. Ss - Session leader, sleeping
    8. VSZ - Virtual memory SiZe
    9. RSS - Resident Set Size


    Quote Originally Posted by colau View Post
    Last row what kind of user "111" it is?
    ps can't establish the name for that user ... it's probably "hal".

    I hope that helps. Take a look at ps's man page for more complete information about its output.

  3. #3
    Join Date
    Apr 2009
    Beans
    1,012

    Re: A quesion with "ps -aux"

    Thanks.

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
  •