NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
Squazz
May 22, 2013Aspirant
BitTorrent Sync - How To
This guide is outdated. I havn't got the time to make it up to par Following this guide with above disclaimer is your own responsibility If you havn't read about BT Sync already, do yourself a fav...
super_poussin
Sep 04, 2013Virtuoso
BTsync should start after a reboot , which version of the addons are you using ?
that's a bad ID to run it as root :( if addons is used btsync is installed under /apps
the addon is here : https://www.dropbox.com/s/djgzikjolykl1 ... 70_all.deb
that's a bad ID to run it as root :( if addons is used btsync is installed under /apps
the addon is here : https://www.dropbox.com/s/djgzikjolykl1 ... 70_all.deb
#! /bin/sh
### BEGIN INIT INFO
# Provides: btsync
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Starts btsync
# Description: Start btsyncon start. Change USER= before running
### END INIT INFO
# Author: Poussin
#
# Do NOT "set -e"
# PATH should only include /usr/* if it runs after the mountnfs.sh script
chmod 777 /apps/btsync/config/sync.conf
HARDTYPE=`uname -r | grep ARM`
if [ $HARDTYPE ]; then
DAEMON=/apps/btsync/bin/arm/btsync
else
DAEMON=/apps/btsync/bin/btsync
fi
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="btsync"
NAME=btsync
#DAEMON=/apps/btsync/bin/$NAME
DAEMON_ARGS="--config /apps/btsync/config/sync.conf"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/btsync
USER=admin
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 0
test -x $DAEMON || exit 0
case "$1" in
start)
# start-stop-daemon --chuid $USER --start --pidfile $PIDFILE --make-pidfile --exec $DAEMON -- $DAEMON_ARGS
start-stop-daemon --chuid $USER --start --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS
;;
stop)
start-stop-daemon --chuid $USER --quiet --stop --exec $DAEMON
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
esac
exit 0
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!