diff --git a/setup/ssh_FAQ.md b/setup/ssh_FAQ.md index bf3ae64..44af86b 100644 --- a/setup/ssh_FAQ.md +++ b/setup/ssh_FAQ.md @@ -14,7 +14,7 @@ Check the permissions on your `ssh` directory: ```bash $ ls -d ~/.ssh -drwxr-x--- - ghost 3 Dec 12:55 󰢬 /home/ghost/.ssh +drwxr-x--- - ghost 3 Dec 12:55 /home/ghost/.ssh ``` This is wrong, because anyone in your `~` can see you `ssh` configuration files. @@ -22,7 +22,7 @@ This is wrong, because anyone in your `~` can see you `ssh` configuration files. ```bash $ chmod -R 600 ~/.ssh $ ls -d ~/.ssh -drw------- - ghost 3 Dec 12:55 󰢬 /home/ghost/.ssh +drw------- - ghost 3 Dec 12:55 /home/ghost/.ssh ``` This is also wrong - entering a directory is the same as executing it.