31

I am using Ubuntu 11.10 and am looking for an equivalent to Process Explorer on Linux. There is System Monitor but it's not nearly as good as Process Explorer with all of its detailed information about processes.

Any suggestions?

Gautam
  • 623

3 Answers3

21

If you don't mind something that's terminal based, then htop is a good and powerful process manager.

htop screenshot

You can install it on Ubuntu with the following command:

sudo aptitude install htop

If you prefer something with a GUI, you could try qps.

qps screenshot

You can install it with the following:

sudo aptitude install qps
Gareth
  • 19,080
freethinker
  • 3,768
  • 3
  • 25
  • 21
16

Use Linux Process Explorer.

Graphical process explorer for Linux. Shows process information: process tree, TCP IP connections and graphical performance figures for processes. Aims to mimic Windows procexp from sysinternals, and aims to be more usable than top and ps.

enter image description here

PS. it is still in alpha development stage.

Gareth
  • 19,080
carl
  • 161
5

gnome-system-monitor

(although i don't know what the OP needed 3 years ago)

gives almost everything that "top" has, but graphical, sortable columns, find open files, and more.

Few screenshots:

enter image description here

Resources tab:

enter image description here

RBT
  • 644