Download newest ubuntu version from https://ubuntu.com/#download
- Bridget Adapter
- Name of host ethernet adapter
- Promiscuous Mode: Allow VMs
- Cable connected
sudo apt-get install openssh-server
sudo adduser <userName>
sudo usermod -aG sudo <userName>
# verify user as admin
sudo - <userName>
add IP-ADDRESS with
vi /etc/hosts
A better approach is the following command
ssh-copy-id <userName>@<VM-Name>
which does all the following automatically
or manually
mdir ~/.ssh
chmod 700 ~/.ssh
sudo scp ~/.ssh/id_rsa.pub <userName>@<VM-Name>:.ssh/authorized_keys
# verify ssh connection
ssh <userName>@<VM-Name>