In this tutorial you will learn how to use SSH escape characters on Ubuntu Server.
Code used during this tutorial:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# SSH escape characters sudo vi /etc/ssh/ssh_config EscapeChar ~ # CLI [ENTER] # Help ~? # Terminate connection ~. # Open a command line ~C ? # Placing an SSH session into the background ~[CTRL-z] # Display status of jobs in the current session jobs # Run jobs in the foreground fg fg %2 # send the escape character by typing it twice ~~ Links: https://www.void.gr/kargig/blog/2006/01/24/ssh-escape-characters/ |
Useful links:
https://www.void.gr/kargig/blog/2006/01/24/ssh-escape-characters/