Posted On May 21, 2020

Lubuntu 20.04 – Enable SSH

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Lubuntu 20.04 – Enable SSH
# Install sshd
sudo apt install ssh -y
sudo systemctl enable --now ssh

# Configure firewall to allow ssh
sudo ufw allow ssh

# Check firewall
ufw status verbose
# sudo ufw delete allow ssh # disallow ssh through firewall

# Configure ssh to enable root login - please make sure that root has a password
sudo sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config

# Set gracetime
sudo sed -i 's/#LoginGraceTime 2m/LoginGraceTime 2m/' /etc/ssh/sshd_config

# restart sshd
sudo systemctl restart sshd

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Centos 5.3 Server preparation for web hosting

These are compatible Repositories: FreshRPMS, Dries, NewRPMS and PlanetCCRMA   Note: to update PHP and…

How to Install Brother Printer on a Linux machine (Debian, Ubuntu, Mint)

Below is an example of the installation sequence using a known driver URL: $ wget…

Run Memory Tester On Ubuntu 20.04

GNU Grub 2.04 does have memtest86+ that could be used to perform RAM load tests.…