This tutorial shows you what SSH is, how to install SSH on Ubuntu Server and how can you access a remote host using SSH.
Code used during this tutorial:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
sudo apt-get update sudo apt-get install openssh-server ps -A | grep sshd ssh -v localhost exit ssh liviu@192.168.56.101 ssh liviu@http.liviubalan.com vi /etc/hosts vi ~/.ssh/known_hosts ssh -o StrictHostKeyChecking=no liviu@http.liviubalan.com # resolve problems with Guest Additions sudo poweroff Useful links: https://en.wikipedia.org/wiki/Secure_Shell |
Presentation used during this tutorial:
Useful links:
https://en.wikipedia.org/wiki/Secure_Shell