From a506cb8153edfdb5dfaadc3e660b7dffa8fc3dc4 Mon Sep 17 00:00:00 2001 From: TiynGER Date: Fri, 5 Mar 2021 16:47:26 +0100 Subject: [PATCH] ssh: added guide to enable root login --- wiki/linux/ssh.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 wiki/linux/ssh.md diff --git a/wiki/linux/ssh.md b/wiki/linux/ssh.md new file mode 100644 index 0000000..53d5386 --- /dev/null +++ b/wiki/linux/ssh.md @@ -0,0 +1,8 @@ +# SSH + +SSH is a network protocoll to securely connect to a computer. + +## Enable root login via SSH + +Edit the `/etc/ssh/sshd_config` and change the line containing `PermitRootLogin` +to `PermitRootLogin yes`.