Syncthing 开源文件同步工具
Posted 叨叨软件测试
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Syncthing 开源文件同步工具相关的知识,希望对你有一定的参考价值。
简介
Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it\'s transmitted over the internet.
优点
安装
Docker
https://github.com/syncthing/syncthing/blob/main/README-Docker.md
# 下载镜像
$ docker pull syncthing/syncthing
# 启动服务,访问地址:http://127.0.0.1:8384
$ docker run --name sysncthing -d -p 8384:8384 -p 22000:22000/tcp -p 22000:22000/udp \\
-v /var/syncthing:/var/syncthing \\
--hostname=daodaotest \\
syncthing/syncthing:latest
# 查看启动日志
$ docker logs -f sysncthing
Linux
# 下载安装包
$ wget https://github.com/syncthing/syncthing/releases/download/v1.17.0/syncthing-linux-amd64-v1.17.0.tar.gz
# 解压
$ tar -zxvf syncthing-linux-amd64-v1.17.0.tar.gz
# 启动指定访问地址,默认访问地址:http://127.0.0.1:8384
$ cd syncthing-linux-amd64-v1.17.0
$ ./syncthing -gui-address=0.0.0.0:8384
Android
# 下载安装包
$ wget https://github.com/syncthing/syncthing-android/releases/download/1.17.0/app-release.apk
# usb 调试模式连接电脑,adb 安装 apk
$ adb install app-release.apk
# 卸载
$ adb uninstall com.nutomic.syncthingandroid
MacOS
下载地址:https://github.com/syncthing/syncthing-macos/releases/latest
# 下载,双击安装即可
$ wget https://github.com/syncthing/syncthing-macos/releases/download/v1.17.0-1/Syncthing-1.17.0-1.dmg
其他平台安装方式参加官网
使用
使用步骤
- 启动 syncthing 服务
- 获取自己的 ID(启动日志 或 GUI)
- 添加远程设备(需要在远程设备同意)
- 同步文件夹设置(共享设备设置、文件夹同步类型设置、扫描周期等)
- 同步文件
同步 Android 手机照片到 Mac
前提
- 手机和 Mac 都安装成功 Syncthing
- 处于同一个WIFI 下(不在一个局域网也可以,传输速度较慢)
手机添加 Mac 为远程设备
手机通过扫描二维码添加设备
Mac 同意远程设备添加
手机共享文件夹给 Mac(摄像机文件夹为 app 安装时默认创建)
Mac 同意共享文件夹
Mac 同意添加完成后,手机照片就会开始自动同步到 Mac
设置 Mac 文件夹类型为“仅接收”,版本控制、忽略模式、扫描间隔等也可修改
以上是关于Syncthing 开源文件同步工具的主要内容,如果未能解决你的问题,请参考以下文章
Server ❀ Syncthing安装部署,一种新型的文件同步工具(免费)