Skip to content

Instantly share code, notes, and snippets.

@vooon
Created June 6, 2017 08:06
Show Gist options
  • Save vooon/ef6b5090ff701c92298602db1352418a to your computer and use it in GitHub Desktop.
Save vooon/ef6b5090ff701c92298602db1352418a to your computer and use it in GitHub Desktop.
Howto run syncthing on Android 2.3 (on Onyx Boox C63ML)
#!/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