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. Answer from epicfilemcnulty on reddit.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
bash - How can I kill a process by name instead of PID, on Linux? - Stack Overflow
Sometimes when I try to start Firefox it says "a Firefox process is already running". So I have to do this: jeremy@jeremy-desktop:~$ ps aux | grep firefox jeremy 7451 25.0 27.4 170536 65680 ? ... More on stackoverflow.com
🌐 stackoverflow.com
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
🌐
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
🌐
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.
🌐
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'.
🌐
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.
🌐
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.
🌐
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.
🌐
nixCraft
cyberciti.biz › nixcraft › howto › ubuntu linux › ubuntu linux stop a process
Ubuntu Linux Stop a Process - nixCraft
April 23, 2011 - See the list of common UNIX / Linux signal names and numbers for more information. In this example, ps command is used to find out all running processes in the system: $ ps aux | grep firefox To end a process, enter: $ kill -s 15 PID-HERE $ kill -s 15 2358 OR send signal 9 (SIGKILL) which is used for forced termination to PID # 3553: $ kill -9 PID-HERE $ kill -9 3553 See our previous FAQ “how to kill a process in Linux” for more information.