Linux / UNIX kill unresponsive hung SSH session
To kill an unresponsive or hung SSH session in Linux or UNIX, you can use the following command: $ kill -9 <PID> Replace <PID> with the process ID of the SSH session. You can find the PID by using the following command: $ ps -ef | grep ssh This will list all the running SSH … Read more