===== Disable root SSH Login and Create sudo User ===== Edit /etc/ssh/sshd_config: vi /etc/ssh/sshd_config Change: PermitRootLogin yes To: PermitRootLogin no Restart sshd: systemctl restart sshd Add new user: useradd -d /home/ -m Change new user's password passwd Change default shell to bash: chsh -s /bin/bash Run visudo to add Full Sudo Privilege to the new user: visudo Add below to the end of the file: ALL = NOPASSWD: ALL