「Syncthing」:修訂間差異
跳至導覽
跳至搜尋
创建页面,内容为“'''Syncthing'''是一套資料同步軟體。 == 外部連結 == * {{Official|https://syncthing.net/}} {{en}}” |
|||
(未顯示同一使用者於中間所作的 16 次修訂) | |||
第1行: | 第1行: | ||
'''Syncthing'''是一套資料同步軟體。 | '''Syncthing'''是一套資料同步軟體。 | ||
== 安裝 == | |||
[[Ubuntu]]下可以透過apt repository安裝<ref>{{Cite web |url=https://syncthing.net/downloads/ |title=Downloads |accessdate=2020-08-14 |language=en}}</ref>: | |||
<syntaxhighlight lang="bash"> | |||
sudo curl -o /usr/share/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg; echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list; sudo apt update; sudo apt install -y syncthing | |||
</syntaxhighlight> | |||
== 設定 == | |||
Syncthing預設會用到<code>22000/tcp</code>與<code>21027/udp</code>,可以分開設定,或是直接使用Syncthing包裝好的設定<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 syncthing | |||
</syntaxhighlight> | |||
在開機時自動執行<ref>{{Cite web |url=https://docs.syncthing.net/users/autostart.html |title=Starting Syncthing Automatically |accessdate=2020-08-14 |language=en}}</ref>,這邊是透過[[systemd]]的方式: | |||
<syntaxhighlight lang="bash"> | |||
sudo systemctl enable syncthing@myuser.service; sudo systemctl start syncthing@myuser.service | |||
</syntaxhighlight> | |||
接下來可以連到本機端的管理界面上操作: | |||
* http://127.0.0.1:8384/ | |||
如果需要可以從非本機連上的話,可以改這段: | |||
<syntaxhighlight lang="xml"> | |||
<gui enabled="true" tls="false" debugging="false"> | |||
<address>0.0.0.0:8384</address> | |||
</gui> | |||
</syntaxhighlight> | |||
== 參考資料 == | |||
{{Reflist|2}} | |||
== 外部連結 == | == 外部連結 == | ||
* {{Official|https://syncthing.net/}} {{en}} | * {{Official|https://syncthing.net/}} {{en}} | ||
[[Category:軟體]] |
於 2023年4月20日 (四) 16:17 的最新修訂
Syncthing是一套資料同步軟體。
安裝
Ubuntu下可以透過apt repository安裝[1]:
sudo curl -o /usr/share/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg; echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list; sudo apt update; sudo apt install -y syncthing
設定
Syncthing預設會用到22000/tcp
與21027/udp
,可以分開設定,或是直接使用Syncthing包裝好的設定[2]:
sudo ufw allow syncthing
sudo systemctl enable syncthing@myuser.service; sudo systemctl start syncthing@myuser.service
接下來可以連到本機端的管理界面上操作:
如果需要可以從非本機連上的話,可以改這段:
<gui enabled="true" tls="false" debugging="false">
<address>0.0.0.0:8384</address>
</gui>
參考資料
- ↑ Downloads. [2020-08-14] (English).
- ↑ Firewall Setup. [2020-08-14] (English).
- ↑ Starting Syncthing Automatically. [2020-08-14] (English).
外部連結
- 官方網站 (英文)