„POSTINSTALL.md“ ändern

This commit is contained in:
inhji 2019-12-10 09:10:31 +01:00
parent 5732a2b16c
commit 5f6f6a4230
1 changed files with 10 additions and 0 deletions

View File

@ -4,8 +4,18 @@
apt install git zsh inotify-tools borgbackup
```
# Increase Inotify watchers
See: https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers
```
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
```
# Setup SSH
See: https://wiki.archlinux.org/index.php/SSH_keys#Ed25519
```
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "johnnie@posteo.de"
```