Anh Huynh

Members
  • Posts

    28
  • Joined

  • Last visited

Posts posted by Anh Huynh

  1. There are also Alpine-based images , but this is not for Alpine fans, as the images are based on Slitaz linux. The result images are quite small (24MB for the latest version 2.4.1). See image attached.

    Disclaimer: These images are 32-bit versions because my base image `icymatter/slitaz40-minimal` is an 32-bit image)

    Images on Dockerhub: (https://hub.docker.com/u/icymatter/)

    * 1.3: icymatter/slitaz40-btsync13

    * 1.4: icymatter/slitaz40-btsync14

    * 2.4: icymatter/slitaz40-btsync24

    Hope this helps :)

    2016-10-23-131022-1477203262.png

  2. here is an example

    {   "device_name": "example.net",  "listening_port" : 1234,                       // 0 - randomize port  /* storage_path dir contains auxilliary app files   if no storage_path field: .sync dir created in the directory    where binary is located.   otherwise user-defined directory will be used */  "storage_path" : "/home/btsync/data/",  "folder_rescan_interval": 300,}
    To start the daemon, use

    /home/btsync/bin/btsync --config /path/to/btsync.conf
    I use supervisor to monitor btsync process. So I start with

    /home/btsync/bin/btsync --config /path/to/btsync.conf --nodaemon
    because supervisor already has daemon support.
  3. On android, you can export btsync configuration to a .zip file. Then open the .zip file, locate the file "sync.dat". It's in bencode format, and you can read it, for example

    ruby -rbencode -e 'ARGV.each {|f| a = File::bdecode(f); puts a }' -- .sync/sync.dat

    [/code

    otherwise, use a hexeditor. The key is to locate the "READ-WRITE" key of the backup folder. After you get the key, go and set up a two ways synchronization between your smart-phones and your PCs. And forget the noisy backup feature :D

  4. List of domains may be accessed by btsync

        $ strings /home/btsync/bin/btsync \      | grep -E '[^ ]{3,}\.com' \      | sed -e 's#.*://##g' \            -e 's#\.com.*#.com#g' \      | sort -u    apps.bittorrent.com    bench.utorrent.com    config.usyncapp.com    download.utorrent.com    gui.com    link.getsync.com    raptor.utorrent.com    remote.utorrent.com    router.bittorrent.com    router.utorrent.com    search.conduit.com    syncdev.bittorrent.com    sync-help.bittorrent.com    tracker.openbittorrent.com    tracker.publicbt.com    update.utorrent.com    www.bittorrent.com    www.usyncapp.com