Syncthing:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
第10行: 第10行:


== 設定 ==
== 設定 ==
防火牆<ref>{{Cite web |url=https://docs.syncthing.net/users/firewall.html |title=Firewall Setup |accessdate=2020-08-14 |language=en}}</ref>:
<syntaxhighlight lang="bash">
sudo ufw allow 21027/tcp; sudo ufw allow 22000/tcp
</syntaxhighlight>


 在開機時自動執行<ref>{{Cite web |url=https://docs.syncthing.net/users/autostart.html |title=Starting Syncthing Automatically |accessdate=2020-08-14 |language=en}}</ref>,這邊是透過[[systemd]]的方式:
 在開機時自動執行<ref>{{Cite web |url=https://docs.syncthing.net/users/autostart.html |title=Starting Syncthing Automatically |accessdate=2020-08-14 |language=en}}</ref>,這邊是透過[[systemd]]的方式:

2020年8月14日 (五) 11:01的版本

Syncthing是一套资料同步软体。

安装

Ubuntu下可以透过apt repository安装[1]

curl -s https://syncthing.net/release-key.txt | sudo apt-key add -; echo "deb https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list; sudo apt update; sudo apt install -y syncthing

设定

防火墙[2]

sudo ufw allow 21027/tcp; sudo ufw allow 22000/tcp

在开机时自动执行[3],这边是透过systemd的方式:

sudo systemctl enable syncthing@myuser.service; sudo systemctl start syncthing@myuser.service

参考资料

  1. Downloads. [2020-08-14] (English). 
  2. Firewall Setup. [2020-08-14] (English). 
  3. Starting Syncthing Automatically. [2020-08-14] (English). 

外部连结