X
Tech
Why you can trust ZDNET : ZDNET independently tests and researches products to bring you our best recommendations and advice. When you buy through our links, we may earn a commission. Our process

'ZDNET Recommends': What exactly does it mean?

ZDNET's recommendations are based on many hours of testing, research, and comparison shopping. We gather data from the best available sources, including vendor and retailer listings as well as other relevant and independent reviews sites. And we pore over customer reviews to find out what matters to real people who already own and use the products and services we’re assessing.

When you click through from our site to a retailer and buy a product or service, we may earn affiliate commissions. This helps support our work, but does not affect what we cover or how, and it does not affect the price you pay. Neither ZDNET nor the author are compensated for these independent reviews. Indeed, we follow strict guidelines that ensure our editorial content is never influenced by advertisers.

ZDNET's editorial team writes on behalf of you, our reader. Our goal is to deliver the most accurate information and the most knowledgeable advice possible in order to help you make smarter buying decisions on tech gear and a wide array of products and services. Our editors thoroughly review and fact-check every article to ensure that our content meets the highest standards. If we have made an error or published misleading information, we will correct or clarify the article. If you see inaccuracies in our content, please report the mistake via this form.

Close

How to kill a process in Linux

Sometimes a process or application can cause problems on a Linux machine. When that happens, you'll need to know how to kill the wayward process.
Written by Jack Wallen, Contributing Writer
Reviewed by Alyson Windsor
laptop at night
Getty Images/d3sign

Have you ever had an application crash? Of course you have. It happens to everyone, regardless of the operating system on which the application is installed. When that happens, what do you do? Restart the operating system

No. That should only be considered a last-ditch effort.

Also: Ready to ditch Windows for Linux? This is the ideal distro for you

When an application goes rogue, instead of rebooting your computer, on Linux you can simply use a command to kill the associated process (because every application and service on your Linux machine runs as a process). 

Most Linux desktop environments include a GUI tool that makes killing a process a simple matter of selecting the process and then selecting Kill.

The Pop!_OS System Monitoring tool

Killing a process from within the Pop!_OS desktop GUI.

Image: Jack Wallen/ZDNET

That's all fine and good, but what happens when you can't access the GUI because a runaway process is gobbling up your system memory? That's when you turn to the command line. 

Also: The best Linux laptops

I'm going to show you two simple ways to kill a Linux process from the command line. You'll be surprised at how easy it actually is.

How to use the kill command

1. Using the kill command

The first method I will show you uses the kill command. The kill command kills processes by way of their PID (process ID). A typical kill command looks like this:

kill PID

Where PID is the process ID for the process in question. 

2. How to kill Firefox with the kill command

You're probably asking yourself, "Where do I locate the PID?" Good question. Here's how. Let's say the problem application is the Firefox web browser. To kill Firefox with the kill command, open a terminal window and locate the PID with:

ps aux |grep firefox

The breakdown of the above command is simple:

  • ps: Reports a snapshot of the currently running processes.
  • aux: Lifts the BSD-style "only yourself" restriction as well as the BSD-style "must have a tty" restriction and lists all processes in the user list.
  • |: Pipe the output of ps to the next command (in this case, grep).
  • grep: Match only the process with the string that follows.
  • firefox: The process we're searching for.

Also: Linux distro hopping is a fun way to find the perfect desktop operating system

Of course, in the case of Firefox, you'll see a process for every single tab you have open. To actually kill Firefox, you need to locate the PID of the very first one listed. That listing will look something like this:

jack       21960  7.6  2.5 14450944 825944 ?     SNl  Jun12 122:44 firefox

The PID is the first number (directly to the right of the username). So, for the above example, the kill command would be:

kill 21960

The above command should kill Firefox.

How to use the killall command

1. Using the killall command for Firefox

This method is considerably easier. Instead of using the PID of the process, you use the name of the process. So, if we want to kill the process named Firefox, the command would be:

killall firefox

If you want to be safe, you can force killall to verify that you want to kill the command using the interactive option like so:

killall -i firefox

Answer y to the question, and the Firefox process will be killed. 

Believe it or not, that's how easy it is to kill a runaway process (or any process, for that matter) on Linux. Yes, there are more options available for each of those commands, but what I've outlined above will get you started. To learn more about each command, read the man pages with man kill and man killall.

Editorial standards