Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: show all running processes

  1. #1
    Join Date
    Nov 2008
    Beans
    200

    show all running processes

    Hi. is there a keyboard shortcut to show list of all running processess. ie what ctrl alt delete does in windows xp.
    M

  2. #2
    Join Date
    May 2007
    Beans
    1,342
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: show all running processes

    Quote Originally Posted by irish66 View Post
    Hi. is there a keyboard shortcut to show list of all running processess. ie what ctrl alt delete does in windows xp.
    M
    In a terminal window, you can enter
    Code:
    top
    or
    Code:
    ps aux
    Just idle curiosity, or is there a reason for your query?
    eeeeeeeeeeeeeeeebuntu user!
    Registered Linux User #386750

    chown -R us base

  3. #3
    Join Date
    Feb 2006
    Location
    North Carolina, USA
    Beans
    410
    Distro
    Ubuntu

    Re: show all running processes

    Quote Originally Posted by irish66 View Post
    Hi. is there a keyboard shortcut to show list of all running processess. ie what ctrl alt delete does in windows xp.
    M
    See the other replies about top and ps, but I believe you could assign a keyboard combination to launch the System Monitor application, which is somewhat similar to the Windows Task Manager.

    Here are two good articles (1,2) on how to do that.

  4. #4
    Join Date
    Nov 2008
    Beans
    200

    Re: show all running processes

    Wow. talk about quick responses. Yep, it was related to ldc++ running. but not showing on screen. I wanted to use an "end task" option.
    Those commands you gave me seem to be to show running processess in text form. I guess what i really want is to be able to stop a program running.
    M

  5. #5
    Join Date
    Sep 2006
    Beans
    3,165
    Distro
    Ubuntu Karmic Koala (testing)

    Re: show all running processes

    ps aux | grep programname
    kill pidnumber

  6. #6
    Join Date
    Nov 2008
    Beans
    200

    Re: show all running processes

    Thanks everybody
    so bin, if i wanted to kill firefox, would it be
    ps aux | grep firefox
    kill pidnumber

  7. #7
    Join Date
    Sep 2006
    Beans
    3,165
    Distro
    Ubuntu Karmic Koala (testing)

    Re: show all running processes

    Quote Originally Posted by irish66 View Post
    Thanks everybody
    so bin, if i wanted to kill firefox, would it be
    ps aux | grep firefox
    kill pidnumber
    Sample :

    xxxx@ubuntu:~/compiz/stackswitch$ ps aux | grep firefox
    xxxx 18215 11.5 5.2 277244 108540 ? Sl 03:20 2:38 /usr/lib/firefox-3.1b2pre/firefox-3.1

    kill 18215 or sudo kill 18215

    you may need sudo at some programs

  8. #8
    Join Date
    Nov 2008
    Beans
    200

    Re: show all running processes

    Thank you. That seems like a lot of writing though.
    M

  9. #9
    Join Date
    Nov 2008
    Beans
    200

    Re: show all running processes

    actually system moniter is fine. Thank you.Mr wilson.
    M

  10. #10
    Join Date
    Feb 2006
    Location
    North Carolina, USA
    Beans
    410
    Distro
    Ubuntu

    Re: show all running processes

    Quote Originally Posted by irish66 View Post
    actually system moniter is fine. Thank you.Mr wilson.
    M
    My pleasure! We're here to help you as best we can.

Page 1 of 2 12 LastLast

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
  •