Page 7 of 16 FirstFirst ... 56789 ... LastLast
Results 91 to 105 of 226

Thread: Controlling (torrent) downloads thru webpage

  1. #91
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    You have problem with syslog. Normaly hartbeat is written every 5 minutes.
    Eg. you should have lines in /opt/var/log/messages like
    Code:
    Feb 19 08:30:06 transmissiond[2078]: 1171870206 4 dl 145.39 ul 24.87 ld 1.23
    Feb 19 08:35:06 transmissiond[2078]: 1171870506 4 dl 188.69 ul 25.14 ld 1.27
    Feb 19 08:40:06 transmissiond[2078]: 1171870806 4 dl 172.64 ul 25.66 ld 1.48
    If they are nonexistent, then check if syslog is running or not. Maybe you did not kill original syslog and you have duplicate syslogd running. Mine runs
    Code:
    /sbin/syslogd -m 0 -O /opt/var/log/messages -S -l 7
    Tracker announce interval clamped to 3hours instead of 5 minutes in Transmission 1463-4.
    See http://trac.nslu2-linux.org/optware/changeset/5538 for details
    Last edited by oleo; 19-02-2007 at 11:50. Reason: announce interval patch

  2. #92
    Yes, you are right.
    This script did not work:
    #!/bin/sh
    #
    # Startup script for syslogd
    #
    # Stop myself if running
    if [ -n "`pidof syslogd`" ]; then
    /bin/killall syslogd 2>/dev/null
    fi

    /sbin/syslogd -m 0 -O /opt/var/log/messages -S -l 7
    When I have corrected it as it is:
    #!/bin/sh
    #
    # Startup script for syslogd
    #
    # Stop myself if running
    if [ -n "`pidof syslogd`" ]; then
    killall syslogd 2>/dev/null
    fi

    /sbin/syslogd -m 0 -O /opt/var/log/messages -S -l 7
    it has worked.

    Thank you.

  3. #93
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    Corrected readme for this issue.

  4. #94
    The above piece of script is overkill. It's much simpler to do this:

    Code:
    killall syslogd 2>/dev/null && \
    /sbin/syslogd -m 0 -O /opt/var/log/messages -S -l 7

  5. #95
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    Quote Originally Posted by wirespot View Post
    The above piece of script is overkill. It's much simpler to do this:

    Code:
    killall syslogd 2>/dev/null && \
    /sbin/syslogd -m 0 -O /opt/var/log/messages -S -l 7
    this script fails if syslogd is not running!

  6. #96
    After reading this post and trying everything you wrote, my transmission-torrent runs now with great 220k down. Thank you!
    But now I have a problem: I don't know at which step I made a mistake, but if I login now with Telnet/SSL and for example enter 'nano' it does not start. It shows only 'Error opening terminal: xterm'. MC works, but it only shows the directories *.cedit,*.mc,*.httpd.conf. But with 'ls/' or 'vi' I can access all of my files.
    I think the error exist after installing uclibc-opt or after enter '/sbin/syslogd -m 0 -O /opt/var/log/messages -S -l 7'.
    What can I do? I don't want to refirm my router (WL-500gp with 1.9.2.7-7f) again..:-(
    Perhaps it is important, this is my ipkg.conf:
    Code:
    src unslung http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable         
    dest root /
    ===========
    okay:
    Code:
    awk '/^Package:/{system("ipkg install -force-reinstall -force-defaults " $2)}' /opt/lib/ipkg/status
    helps...
    Last edited by hanseugen; 25-02-2007 at 12:25.

  7. #97
    Gettin trouble resuming torrents after crash.
    Strange the older version I had didnt cause any troubles with stability.

    It marks torrents as paused for no reason and gives IO errors.


    If I try to push them I get /opt/share/www/cgi-bin/transmission.cgi: kill: 9: (5828) - No such process
    Last edited by calebz; 22-02-2007 at 21:46.

  8. #98
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    No problem with stability for me. This paused is really strange. It looks like tracker related thing.
    Last edited by oleo; 22-02-2007 at 21:47.

  9. #99
    Well you had to change something related to tracker stuff cause before this after hard reboot the daemon simply checked the files and started again.
    Now I need to delete the files to make it start again.

  10. #100
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    What I see from your image is that maybe you do not have proper time configured at router. As started shows 1.jan 1970! So check jour NTP config if this is the case.

  11. #101

    Tansmission Install Tutorial

    Have been using enhanced-ctorrent for a while with no complaints but would be interested in making the change over to a Web GUI.

    Have done a search and read the posts ...but is the a definitive up-to-date tutorial for install ...or should stop whining and put one together

    Thanks in advance for any info

  12. #102
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736

  13. #103
    Join Date
    Feb 2005
    Location
    Germany - Frankfurt
    Posts
    1,548
    Hi there,

    i have a WL-HDD with transmission installed.
    Its working fine until now.

    syslog is running and transmissiond is reporting to /opt/var/log/messages.
    so far, so good.

    The strange thing: There are no entries like
    Feb 19 08:30:06 transmissiond[2078]: 1171870206 4 dl 145.39 ul 24.87 ld 1.23
    Feb 19 08:35:06 transmissiond[2078]: 1171870506 4 dl 188.69 ul 25.14 ld 1.27
    Feb 19 08:40:06 transmissiond[2078]: 1171870806 4 dl 172.64 ul 25.66 ld 1.48
    I only see start and stop messages of transmissiond.
    Webinterface shows 'Unable to find recent transfer stats in syslog'

    Any idea?

    wengi

    PS: my setup is done as explained here. (but not translated to english until now)
    PPS: By the way. Is it possible to set a seed ratio or seed time for transmission?
    Last edited by wengi; 26-02-2007 at 07:29.

  14. #104
    Thanks oleo - & Moody Blue for the Tutorial

  15. #105
    Hello

    I've just bought a WL-500gP and installed latest -7f oleg's firmware... Amazing I must say... Then to get similar functionalities as DM I manage to install transmition pack (thanks all for tut's - oleo, macsat, other's... - and especially moody blue - Portugal Rules! hehehe)

    I haven't installed/configured wondershaper yet but I noticed that with abou 7-8 torrents downloading/seeding my bandwidth gets all eaten by transmission (I cannot browse the web fluently - I'm using wireless: don't really use ethernet cable, yet)

    The theorical spec's of my connection are: 12Mbs dl / 400kbs ul...

    This is normal, with these number of torrents DL - arround 64kbs dl/ 75kbs ul- or wondershaper will make some wonders with my connection?

    I guess that with such wide bandwidth that shouldn't be a problem or the hardware can't handle that much traffic?

    What can/must I do to, somehow, get better overall performance?

    I want to install rddtool but I'm afraid it'll make it even worse...

    Cheers
    Lourenco

Page 7 of 16 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. Torrent clients - needed help with rtorrent compilation
    By sponsor79 in forum WL-500g Custom Development
    Replies: 2
    Last Post: 18-10-2006, 00:11
  2. torrent & ports
    By ros in forum WL-500g Q&A
    Replies: 6
    Last Post: 18-07-2006, 07:43
  3. Bandwidth Management wie kann ich für 1 PC nur Browser zulassen und keine Downloads
    By silver_ch in forum German Discussion - Deutsch (DE)
    Replies: 1
    Last Post: 02-06-2006, 11:32
  4. Torrent Client op WL500G
    By pietjebell in forum Dutch Discussion - Nederlands
    Replies: 3
    Last Post: 24-05-2006, 14:56

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •