How to abort a stuck command in ubuntu server?

CTRL+C will send SIGINT to the application. The application can configure a handler for this signal or it can ignore the signal. By default there is no handler and SIGINT will kill the application.

You can use CTRL+\ which will send SIGQUIT. This will also generate a core dump if the core limit is not zero.

You can suspend the process and return to shell with CTRL+Z, this will stop the execution of the process and return to the shell prompt. The process will be in memory and it will be available as a job in the current shell. You can then use kill -SIGNAL %% or kill -SIGNAL %<job_ID> to send a signal to that job. E.g. to kill the last job use kill -9 %%

If none of them are working you can always send SIGTERM, then, as last resort, SIGKILL which will terminate any process. This signal as any other signals must be sent as the same user as the process you are trying to stop or as root. To send SIGKILL to process, first find the process with ps aux or ps -edf, then run kill -SIGKILL <process_ID>, where the <process_ID> is the PID column in ps output.

The signals can not be delivered if the process is in an uninterruptible call. Uninterruptible calls are kernel functions that can not be stopped and usually happen because of a bad driver (e.g. a driver that is not reentrant). A process that is in uninterruptible sleep can not be stopped until the call gets completed or the server is rebooted.

If a process becomes a zombie, it will not use any resources only taking space in the process table. A zombie process can not receive signals.

The list of signals for the current architecture can be found with kill -l

See the man pages of kill, ps and bash. To see a man page use something like: man ps


If you have full console access, you can do Alt-F1..12 and get a new console.

From there, you can do a process listing like follows:

ps aux | grep <process-name>

Then do a kill on the process ID:

kill -9 <pid>

If you don't have full console access, just open another terminal window (perhaps via PuTTY or similar), and do the above process listing and kill steps.


Ctrl C sends a SIGINT to your running process. If you don't want to open another console you can send a SIGQUIT with Ctrl \. This will address most day to day hung apps that the SIGINT does not.

I've personally wanted a way to send a SIGKILL with a shortcut but I'm not aware of a way to do so.