Ubuntu安装开源文件同步软件Syncthing

2021-03-28
#Experiences #Unix

1. 安装步骤

# Add the "stable" channel to your APT sources:
echo "deb https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list

# Add the release PGP keys:
curl -s https://syncthing.net/release-key.txt | sudo apt-key add -

# Update and install syncthing:
sudo apt-get update
sudo apt-get install syncthing

# open syncthing
syncthing

2. 参考