Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I'm looking for that thing that shows running processes, lets me affect them by clicking on them and maybe shows some nice charts like CPU usage, that kind of thing.

share|improve this question

4 Answers

up vote 19 down vote accepted

In Unity you can access the System Monitor by clicking on the power applet (on the top right of the screen) and clicking on "System Settings" or by simply searching for "System Monitor" in the Unity Menu:

enter image description here

share|improve this answer
1  
It's even better looking than I had expected. Thanks! – John K Aug 13 '10 at 2:52
1  
@wm_eddie you may want to edit your comment for 12.04 as System Monitor is not in the System Settings window. Instead, click the dash and enter "System Monitor" into the search to bring it up. – James Sep 4 '12 at 22:15
@James it is if you have an old version or Xubuntu. Perhaps you can and an edit for 12.04. – mateo_salta Dec 5 '12 at 18:38

The "task manager" for Ubuntu is called Gnome System Monitor and you can find it under System → Administration → System Monitor. To have it appear using the keyboard you can set a shortcut like this:

  1. Open System → Preferences → Keyboard Shortcuts
  2. Click "Add"
  3. Type "System Monitor" in the "Name" box
  4. Put "gnome-system-monitor" in the "Command" box
  5. Click "Apply"
  6. Click where it says "Disabled" in the same row as "System Monitor"
  7. Hit Ctrl+Escape
  8. Close the Keyboard Shortcuts window

You're set. Now when you press Ctrl+Escape the System Monitor will appear.

share|improve this answer
1  
+1 Additional useful info about the key binding. – John K Aug 13 '10 at 3:56

If you want to have a nifty set of bar graphs showing what your system is up to, you can

  1. Right click on the panel (away from existing items)
  2. Select Add to Panel
  3. Select the System Monitor applet

You should find a bar graph on your panel showing the system load. If you right click on it, you can add more displays (network usage, memory use, io).

share|improve this answer
1  
+1 The applet's a nice touch. – John K Aug 13 '10 at 3:55
1  
I like to set iowait to be some conflicting colour. I don't know why, but I really like to know about time wasted on spinning disks. – Erigami Aug 13 '10 at 4:15

For the command line option.

Open a terminal and type:

top

You'll get a pretty simple listing of the processes using the most CPU time.

For a more interactive version that includes more features such as total CPU, memory, swap usage; and the ability to scroll through all of the running processes, install htop.

sudo apt-get install htop

Then in the terminal type:

htop

Note: htop shows a much more detailed breakdown of the processes running on your system.

share|improve this answer
+1 very cool. An ASCII GUI with lots of good info. – John K Sep 26 '10 at 4:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.