30

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?

3 Answers 3

22

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
9
  • 1
    htop is good , but its not the most user friendly program !
    – Gautam
    Commented May 19, 2011 at 4:31
  • updated my answer Commented May 19, 2011 at 4:36
  • 1
    Is there tool that can show call-stack of a running thread?
    – expert
    Commented Sep 23, 2012 at 23:45
  • 1
    It should be noted that Ubuntu 12.04 is the last Ubuntu release that has qps in its default repositories.
    – karel
    Commented Nov 2, 2015 at 17:20
  • 1
    @karel It is currently supported, and in the default repositories.
    – user494585
    Commented Feb 1, 2019 at 5:14
14

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.

8
  • 1
    This looks like a useful tool, but your answer provides very little information about it. Could you edit your answer to include some info about how it works and perhaps a screenshot?
    – nhinkle
    Commented Jun 5, 2011 at 17:18
  • This looks great! htop and qps are well-established tools, but they don't display per-process history of CPU and memory usage. The Windows Process Explorer has a lot of useful features that I would be happy to find in a unix tool. Commented Oct 20, 2012 at 10:40
  • it lacks sorting or finding a process. if you have tons of processes, you can't locate yours. Commented Feb 25, 2014 at 16:45
  • @BerryTsakala typical linux programmers will write a process explorer without even the basic features of windows task manager! anything a linux programmer does with a gui, is a gimmick, i'm sure they dont even use what they write!
    – barlop
    Commented Aug 30, 2018 at 23:17
  • I love "kill process tree"!!!
    – kokbira
    Commented Jul 19, 2019 at 14:15
6

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

2
  • Better sudo apt-get install ksysguard.
    – user
    Commented Feb 28, 2019 at 0:35
  • @user, for the purpose of a Process Explorer replacement, yeah. Commented Apr 21 at 19:36

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .