jbruechert / rsync-static

Static RSync binaries compiled for x86, ARM, and ARM64. Useful for running on Android. Built daily

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rsync-static

This repository contains a script to build static rsync binaries for ARM, aarch64 and x86 using a musl gcc toolchain.

Example

This example is based on a blog post by Péter Szabó.

To install and start rsync on your Android phone, run on Linux computer

curl -o- https://raw.githubusercontent.com/JBBgameich/rsync-static/master/adb-start-rsyncd.sh | bash

You can also clone this repo and run

./adb-start-rsyncd.sh

You can now transfer files from and to the device. To pull your current rsyncd.conf, use this command:

rsync -av --progress --stats rsync://localhost:6010/root/data/rsyncd.conf .

To deploy a new rsyncd.conf file using rsync, you can use

rsync -av --progress --stats rsyncd.conf rsync://localhost:6010/root/data/rsyncd.conf

About

Static RSync binaries compiled for x86, ARM, and ARM64. Useful for running on Android. Built daily


Languages

Language:Shell 100.0%