How do I suspend an ssh connection. Control-Z suspend remote process. I use OpenSSH client and bash.
|
feedback
|
|
Use escape character. The escape character must always follow a newline. ~^Z(~ Ctrl+Z) - background ssh. Supported escapes:
| |||
|
feedback
|
|
you can suspend 'remote' process using the same way like with Ctrl+Z, but you need to do it manually:
If you want to "preserve" the connection instead, you might want to use screen, tmux or similar software. | |||
|
feedback
|