wizt

Members
  • Posts

    5
  • Joined

  • Last visited

wizt's Achievements

New User

New User (1/3)

  1. Working on Buffalo Linkstation Duo (LS-WXL). You need to change the port of the WebUI however, as you will not get any response from 8888. 8080 works fine. You will also need root access to the device of course, more info at http://buffalo.nas-c...Category:LS-WXL > wget http://btsync.s3-website-us-east-1.amazonaws.com/btsync_arm.tar.gz > tar zxvf btsync_arm.tar.gz > chmod u+x btsync > ./btsync --dump-sample-config > config.txt > nano config.txt Change: listen: 0.0.0.0:8888 to listen: 0.0.0.0:8080 > ./btsync you might also have problems with the UPNP port mapping, then just port forward a port on your router, then change: listening_port: 0 use_upnp: true to listenning_port: YOUR_FORWARDED_PORT use_upnp: false If anyone finds a way around the "change the web ui port" thing, please tell me. I have tried adding the ports to /etc/services, but that did not do anything... And you don't have access to iptables on the original firmware.
  2. Alright.. find a solution to some of the problems I am having... But first, the NAT-PMP problem was not my mian concern here, as I was not getting into the web interface, and I have a 100% CPU load. But I have to thank you for point that out, as it was the thing that got me thinking about a solution to my problem The solution to the 100% cpu "bug" is to change port that the WebUI is running on OR open the port (8888) on the Linkstation (PS. you don't have iptables). What I did was to change the port to 8080 and the WebUI works and the load went down to a more managable 0-1% (when nothing is happening) Now I will just try to figure out how to properly open the other ports on the Linkstation. Since I don't have access to iptables i will probable have to mess with /etc/services or something similar. I will post back if/when I find a solution.
  3. Ok, so I ran the debug and all I get is this: [20130326 15:09:38] Loading config file version 1.0.116 [20130326 15:09:39] Got 2 relay ips [20130326 15:09:39] Server ip 67.215.231.242:3000 [20130326 15:09:39] Server ip 67.215.229.106:3000 [20130326 15:09:50] NAT-PMP: Unable to map port with NAT-PMP. [20130326 15:10:39] Got 2 relay ips [20130326 15:10:39] Server ip 67.215.229.106:3000 [20130326 15:10:39] Server ip 67.215.231.242:3000 [20130326 15:11:39] Got 2 relay ips ....... Repeats this every minute Not much to go on there....
  4. Dammit, sorry. Just noticed how to turn on the debug stuff... I will post a log after 15-20min when the program has run for a while...
  5. Hi, I have a problem running BTSync on my Buffalo NAS. I am running firmware 1.64, and have root access to the device. No other modifications has been done to the firmware. The NAS is arm based: > uname -a Linux hostname 3.3.4-88f6281 #2 Mon Dec 10 17:31:41 JST 2012 armv5tel unknown I installed and ran the program like this: > wget http://btsync.s3-website-us-east-1.amazonaws.com/btsync_arm.tar.gz > tar zxvf btsync_arm.tar.gz > chmod u+x btsync > ./btsync Now to my problem. The program runs, but I can't access the webui. When I check top it says that btsync is using close to a 100% of the cpu. I left it running for about 5min, but it is still close to a 100% and no webui. I also tried running with the flag --no-daemon set, in hope of getting some debug messages, but nothing. Do you guys and girls have any idea of what might be causing this, and is there a possible fix? Is there any way to get some debug info from the application?