LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   task manager (https://www.linuxquestions.org/questions/linux-newbie-8/task-manager-841465/)

farooq1220 10-30-2010 09:12 PM

task manager
 
i would like to know is there any task manager present in linux like in windows

GrapefruiTgirl 10-30-2010 09:16 PM

Depending which Desktop Environment you use, there may be a variety of task-manager-like applications that you can use. I'm not familiar with DE's other than KDE, and in that environment, there's "Ksysguard", which is the closest replica of a Task Manager I seen.

It's a good idea to tell us what GNU/Linux OS you're using, so someone may be able to suggest an application that you already have.

If you like console tools, `top` and `htop` are both very capable process viewers and task killers too. htop is my tool of choice for task-manager type of activities.

mlangdn 10-30-2010 09:56 PM

Also try:

Code:

$ ps ax
For further info:

Code:

$ man ps

John VV 10-31-2010 01:05 AM

if you are using Gnome
there as a panel app
r-click the top bar and select
"add to panel" and add
"System monitor "

or form the terminal
Code:

gnome-system-monitor

frankbell 11-01-2010 08:01 PM

ps -A lists all running processes.

You can use the kill command ("kill [process number]") to stop a process. If it's a process started by user, user can kill it. If it's a system process, it must be killed with root privileges (use with much caution).

It is a lot more efficient than any graphical task manager I've ever used.


All times are GMT -5. The time now is 06:00 AM.