sstop
sstop is a command-line utility used in Unix-like operating systems to stop a process by sending it a signal. Typically, it is used to terminate programs that are no longer responding or that need to be shut down gracefully. The command works by identifying a process, usually through its Process ID (PID), and then sending a specified signal to that PID. The default signal sent by sstop is SIGTERM, which is a polite request for the process to terminate. If a process does not respond to SIGTERM, a more forceful signal, SIGKILL, can be sent, which terminates the process immediately without allowing it to clean up resources.
To use sstop, you first need to know the PID of the process you wish to stop.