Created
June 6, 2017 08:06
-
-
Save vooon/ef6b5090ff701c92298602db1352418a to your computer and use it in GitHub Desktop.
Howto run syncthing on Android 2.3 (on Onyx Boox C63ML)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# 1. download Syncthing for Linux ARM | |
# 2. Install: https://play.google.com/store/apps/details?id=jackpal.androidterm | |
# 3. Put syncthing-arm to device SD card | |
# | |
# run: source /sdcard/runsync | |
# | |
# location of treminal folder | |
cd /data/data/jackpal.androidterm/shared_prefs | |
update="/sdcard/syncthing-arm" | |
if [ -e $update ]; then | |
busybox mv $update syncthing | |
fi | |
#./syncthing -no-browser -gui-address="http://0.0.0.0:8384" | |
./syncthing -no-browser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment