I am one of those people who function better by writing things down. One day, I realized that most of my notes don’t have to be private, so here they are - my second brain. Be warned that, if you stumble upon something here that doesn’t make sense to you, it isn’t meant to!
Syncthing
Install Linux VERSION=1.8.0 WORKING_DIR=/tmp/syncthing-$VERSION rm -rf $WORKING_DIR mkdir $WORKING_DIR cd $WORKING_DIR wget https://github.com/syncthing/syncthing/releases/download/v$VERSION/syncthing-linux-amd64-v$VERSION.tar.gz tar xzvf syncthing-linux-amd64-v$VERSION.tar.gz cd syncthing-linux-amd64-v$VERSION # If the following command throws an error like: "cp: cannot create regular file `/usr/local/bin/syncthing': Text file busy", # shutdown the current Syncthing session from the UI and retry. sudo cp syncthing /usr/local/bin Note: Change version number to the latest one. Mac brew cask install syncthing If you run into any issues (for e.g., Syncthing doesn’t start), try starting the daemon through the command line to see what the problem is: ...