To kill all the processes that you have the permission to kill, simply run the command

kill -15 -1 or kill -9 -1 depending on the desired behavior (use man kill for details)

To kill a specific process, say, firefox, simply run

pkill firefox or killall firefox depending on the behavior you want: What's the difference between 'killall' and 'pkill'?

If you want to see what processes are running use the command

ps -ef

If you want to look up all processes by user bob, this might help

pgrep -l -u bob

or

ps -ef | grep bob
Answer from ste_kwr on askubuntu.com
🌐
Built In
builtin.com › articles › kill-process-linux
How to Kill a Process in Linux: Best Commands to Use | Built In
To kill a Linux process using the kill command, use the syntax: ... [signal] is the specified signal you want to use to terminate the process.
🌐
Linux Foundation
linuxfoundation.org › blog › blog › classic-sysadmin-how-to-kill-a-process-from-the-command-line
Classic SysAdmin: How to Kill a Process from the Linux Command Line - Linux Foundation
September 13, 2022 - When I wind up with a stubborn process, I tend to start off with the killall command as it is the most efficient route to termination. However, when you wind up with a really feisty process, the kill command is the way to go.
Discussions

Best way to effectively kill a process?
There are only two signals (what you called "sub-command" in the comments) that can't be trapped (i.e. ignored by a process) -- SIGSTOP and SIGKILL, generally SIGKILL is used to kill an unresponsive process, e.g kill -9 ${process_pid} or kill -s KILL ${process_pid}. p.s. if you don't specify a signal, by default kill sends the SIGTERM signal, which can be ignored by a process. More on reddit.com
🌐 r/linux
66
34
January 16, 2024
command line - How to terminate a background process? - Unix & Linux Stack Exchange
I have started a wget on remote machine in background using &. Suddenly it stops downloading. I want to terminate its process, then re-run the command. How can I terminate it? I haven't closed... More on unix.stackexchange.com
🌐 unix.stackexchange.com
December 12, 2013
How to turn on kill switch in nordvpn from Linux mint terminal?

off the top of my head i think its nordvpn set killswitch on/off (choose desired on or off at end)

More on reddit.com
🌐 r/nordvpn
3
0
January 21, 2019
How to stop timeshift from creating snapshots?
timeshift > settings > schedule > uncheck them all you can delete backups from the main window. More on reddit.com
🌐 r/linuxmint
1
13
September 14, 2018
🌐
Opensource.com
opensource.com › article › 18 › 5 › how-kill-process-stop-program-linux
How to kill a process or stop a program in Linux | Opensource.com
May 9, 2018 - Ctrl+C sends the SIGINT signal to gedit. This is a stop signal whose default action is to terminate the process.
🌐
ManageEngine
manageengine.com › home › logging guide › linux kill process
How to kill a process in Linux
May 26, 2025 - By default, this command sends the SIGTERM signal, enabling the process to shut down gracefully and complete any necessary cleanup before it terminates.The process with the specified PID will receive this signal and can save any data or close open files before terminating. This is the preferred method for terminating processes. The "kill" command also allows you to specify other signals as well. The "Kill - l" command in the Linux terminal helps you view the complete list of all signals.
🌐
PhoenixNAP
phoenixnap.com › home › kb › sysadmin › how to kill a process in linux from command line?
How to Kill a Process in Linux from Command Line?
April 28, 2025 - The kill command terminates processes via the process ID. The syntax is: ... The kill command kills a single process at a time with the given process ID. It sends a SIGTERM signal instructing a process to stop.
Find elsewhere
🌐
Kamatera
kamatera.com › home › knowledgebase › how to kill a process in linux
How to Kill a Process in Linux | Kamatera
October 17, 2025 - When an application hangs, consumes too many resources, or needs a clean restart, you may have to terminate (or ‘kill’) its process. This guide shows safe, step-by-step ways to find and end Linux processes using standard tools, whether you’re working on Ubuntu, Debian, CentOS/Alma Linux, or other distributions. It applies equally to servers running on Kamatera via SSH or your Kamatera console. SIGTERM (15): ask the process to exit gracefully (default) SIGKILL (9): force stop (last resort)
🌐
Linux Handbook
linuxhandbook.com › kill-process
Kill a Process in Linux Using kill, pkill & killall Commands
June 14, 2024 - If the command/process is running in the foreground, you can use the Ctrl+C terminal shortcut. However, if the process is not visible (running in the background), you can use dedicated commands to 'kill it'.
🌐
Tom's Hardware
tomshardware.com › software › operating systems › linux
How To Kill a Process in the Linux terminal | Tom's Hardware
June 9, 2025 - You can open a terminal window on most Linux machines by pressing ctrl, alt and t. ... To begin, let's open a software application and then, in the terminal, use the killall command to kill the application.
🌐
How-To Geek
howtogeek.com › home › linux › how to kill processes from the linux terminal
How to Kill Processes From the Linux Terminal
November 4, 2023 - "Killing" a process just means "forcing the process to quit." This may be necessary if the process is refusing to respond. Linux provides the kill, pkill, and killall commands to allow you to do just that.
🌐
Hostinger
hostinger.com › home › tutorials › how to kill a process in linux from the command line
How to kill a process in Linux from the command line
May 9, 2025 - To kill a process in Linux, you can use the kill command, specifying either the Process ID (PID) or the process name. The kill command sends signals to processes, asking them to terminate or forcing them to stop.
🌐
KodeKloud
kodekloud.com › blog › how-to-terminate-or-kill-a-process-in-linux-complete-guide
How to Terminate, or Kill a Process in Linux (Complete Guide)
January 22, 2025 - So just replace 778 in the next commands with whatever applies to you. The first step we can try with a misbehaving process: Method 1 – Try to Terminate the Process Gracefully (SIGTERM)
🌐
RunCloud
runcloud.io › blog › how-to-kill-process-in-linux
How to Kill a Process in Linux From the Command Line
October 20, 2025 - This command brings job ID 1 back to the foreground and makes it the active process in your terminal. bg (Background): If you’ve stopped a foreground process (using Ctrl+Z), you can send it to the background to continue running with bg. ... There are several ways to kill a process in Linux, but the first step is always to identify the process you want to kill.
🌐
GeeksforGeeks
geeksforgeeks.org › linux-unix › kill-command-in-linux-with-examples
kill Command in Linux - GeeksforGeeks
May 14, 2026 - This process ID belongs to a text editor, so we forcefully terminated it using kill -9. To pause (stop/suspend) a running process without terminating it, you can send it the SIGSTOP signal using the kill command:
🌐
LinuxConfig
linuxconfig.org › home › how to kill a running process on linux
How to Kill a Running Process on Linux
February 19, 2020 - Learn how to end processes using the kill command on Linux. This guide covers process management with commands ps, top, and pkill.
🌐
Contabo
contabo.com › home › kill processes in linux – sysadmin’s guide
Kill Processes in Linux - SysAdmin's Guide | Contabo Blog
January 26, 2026 - This is standard for controlled process termination. The syntax is simple: ... Here, 1234 is the PID you want to stop. No signal specified means the system automatically sends SIGTERM. If you check your process list again and the task is still running, the application is ignoring the request or stuck in an uninterruptible state. Now you need to escalate to a force kill process linux approach.
🌐
nixCraft
cyberciti.biz › nixcraft › howto › linux › how to list and kill a process in linux
How To Kill Process in Linux & Terminate a Process in UNIX - nixCraft
May 6, 2026 - He writes about Linux, macOS, Unix, IT, programming, infosec, and open source. Follow his work via RSS feed. ... Kill -9 pid. Kill pid. This format wont work.. Just check it.. These kill differs in releasing resources forcibly or gracefully………. ... I login as root, kill -9 a process but it refuses to stop.