Skip to content

Instantly share code, notes, and snippets.

@linuxfemale
Created November 18, 2019 15:06
Show Gist options
  • Save linuxfemale/387981301070f4673c91bb728ad21406 to your computer and use it in GitHub Desktop.
Save linuxfemale/387981301070f4673c91bb728ad21406 to your computer and use it in GitHub Desktop.
Enable SSH in Ubuntu 18.04 LTS
sudo apt-get install openssh-server
sudo service ssh status
sudo nano /etc/ssh/sshd_config
set PermitRootLogin yes
set PasswordAuthentication yes
set PermitEmptyPasswords yes
sudo service ssh restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment