> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Use Task Manager Equivalent in Linux
- URL: https://itsfoss.com/task-manager-linux/
- Published: 2016-06-29T23:36:47.000Z
- Updated: 2024-10-25T04:36:16.000Z
- Description: Yes! There is a task manager on Linux. Though you cannot run it with Ctrl+Alt+Del keys, you can certainly use it to manage processes.
- Author: Abhishek Prakash
- Tags: Tutorial

“**Is there a task manager for Linux**?” “How do you open the task manager on Linux?” “Where do I find the Ubuntu task manager?”

These are some of the most frequently asked questions from Linux beginners: 

People who are coming from Windows know how valuable the task manager is. You press Ctrl+Alt+Del to get to the task manager on Windows. And, the task manager shows you all the running processes and their memory consumption. You can choose to end a process from this task manager application as well.

When you’re just starting out with Linux, you may also look for a **task manager equivalent on Linux**. An expert Linux user prefers the command-line way to find processes and memory consumption, etc., but you don’t have to go that way, at least not when you’re just starting out with Linux.

All the major Linux distributions have a task manager equivalent. Usually, **it’s called System Monitor**, but it actually depends on your Linux distribution and the [desktop environment](https://wiki.archlinux.org/index.php/desktop%5Fenvironment?ref=itsfoss.com) it uses.

In this article, we’ll see how to find and use the task manager on Ubuntu and other Linux distributions that use GNOME as the [desktop environment](https://itsfoss.com/best-linux-desktop-environments/).

## System Monitor: The Task Manager of Linux distributions

If you’re using the GNOME desktop (which is what Ubuntu uses), press the Super key (Windows key) and look for System Monitor. In other desktop environments, search for System Monitor in the menu.

![system monitor gnome](https://itsfoss.com/content/images/2024/10/ubuntu-monitor-screenshot.png)

Search for System Monitor

Now, launch the system monitor you find (just like you see above).

For our example, it will start the [GNOME System Monitor](https://help.gnome.org/users/gnome-system-monitor/?ref=itsfoss.com). It shows you all the running processes and their memory consumption. Yours might look a bit different if you are not using GNOME. But, it will be more or less similar.

![task manager in Linux](https://itsfoss.com/content/images/2024/10/ubuntu-monitor-processes.png)

Check the running processes

You can select a process and click on **End process** to kill it. You can also select multiple entries here and [kill the processes](https://itsfoss.com/how-to-find-the-process-id-of-a-program-and-kill-it-quick-tip/) in one click.

![Kill process in fedora](https://itsfoss.com/content/images/2024/10/ubuntu-process-end.png)

End a process

Furthermore, you can also see some statistics about your system in the **Resources** tab, such as CPU consumption per core basis, memory usage, network usage, etc.

![system monitor fedora](https://itsfoss.com/content/images/2024/10/ubuntu-gnome-monitor-resources.png)

Monitor resource consumption

You can watch this video to see it in action:

[Subscribe to our YouTube Channel for more Linux Videos](https://www.youtube.com/c/itsfoss?sub%5Fconfirmation=1&ref=itsfoss.com)

## There are more ways to manage tasks

You are not restricted to the task manager provided by your distribution. There are several other system monitoring applications for Linux.

Take a [look at Mission Center](https://news.itsfoss.com/mission-center/?ref=itsfoss.com). It looks pretty, and I think it provides information in a more user-friendly way.

![Mission center task amanger for Linux](https://itsfoss.com/content/images/2024/10/image-1.png)

Mission center

Mission Center is not the only one. Take a look at some other GUI task managers.

[Best GUI-based Task Managers for Linux DesktopWant a task manager for Linux but don’t want to go the terminal way? Here are the GUI ones I explored recently.![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSAnkush Das![](https://itsfoss.com/content/images/2024/10/graphical-text-managers-for-linux.png)](https://itsfoss.com/gui-task-managers-linux/)

## You can monitor system from the terminal, too

The ones I mentioned is when you utilize the graphical user interface. 

If you want to go the command line way, just [run the top command](https://linuxhandbook.com/top-command/?ref=itsfoss.com) in the terminal, and you can see all the running processes and their memory consumption. You can also easily [kill processes in the Linux](https://itsfoss.com/how-to-find-the-process-id-of-a-program-and-kill-it-quick-tip/) command line.

While top should be available by default, you can also [install htop](https://itsfoss.com/use-htop/) and use it. It looks pretty good, and gives you all the essential details like memory usage, swap memory, process details, and more.

![htop running in Linux terminal](https://itsfoss.com/content/images/2024/10/ubuntu-htop.png)

This is all you need to know use a task manager equivalent on Linux. 

*I hope you found this quick tutorial helpful. If you have questions or suggestions, feel free to comment 💭*