Last active
August 29, 2015 14:17
-
-
Save firmread/68a1f5628c3165c77ed0 to your computer and use it in GitHub Desktop.
get btsync on pi
This file contains hidden or 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
### | |
# setup btsync in pi | |
### | |
mkdir ~/.btsync && cd ~/.btsync | |
#wget http://btsync.s3-website-us-east-1.amazonaws.com/btsync_arm.tar.gz | |
wget https://download-cdn.getsyncapp.com/stable/linux-arm/BitTorrent-Sync_arm.tar.gz | |
tar -xvf BitTorrent-Sync_arm.tar.gz | |
echo "# run btsync and web interfact at port 8888" >> ~/.bashrc | |
echo "sudo ~/.btsync/btsync --webui.listen 0.0.0.0:8888" >> ~/.bashrc | |
### | |
# credits: | |
# http://blog.bittorrent.com/2013/08/20/sync-hacks-how-to-sync-without-data-loss-using-btsync-raspberry-pi/ | |
### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment