Last active
October 20, 2018 10:29
-
-
Save inspector71/41d23f5df5219e9fa565bf0f409545f8 to your computer and use it in GitHub Desktop.
Install and autostart syncthing on Raspbian 9 (stretch)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# As root | |
apt install syncthing | |
nano /etc/systemd/syncthing.service | |
# Paste contents of | |
# https://raw.githubusercontent.com/syncthing/syncthing/master/etc/linux-systemd/system/syncthing%40.service | |
Ctrl + o | |
Crtl + x | |
# As "pi" user | |
sudo systemctl enable [email protected] | |
sudo systemctl start [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment