Transmission

A central place to check out community add-on releases for the ReadyNAS NV+, Duo, 1100, NV, 600/X6.

Moderators: LrdShaper, chirpa, super-poussin, gingerbeardman, WhoCares?, Doomi

Forum rules
For help with add-ons listed in this sub-forum, please post questions in this forum: General Discussion on ReadyNAS Add-ons.

These add-ons are created by third-party developers, and are not supported by NETGEAR. If you contact NETGEAR support for assistance with these add-ons, they will be unable to help you. Instead, post in the forum above to get help from the add-on developer.

Similar topics


Transmission

Postby super-poussin » Wed Dec 31, 2008 3:11 am

Image
Transmission
  • Description: Transmission is a Peer to Peer (P2P) Client,which will let you download files from the BitTorrent Network. It support encryption and peer blocking. Some scripts have been added to enhance the capabilities like uncompressing files, moving complete downloads to a specific directory.
    BitTorrent is a peer-to-peer file sharing protocol used for distributing large amounts of data. BitTorrent is one of the most common protocols for transferring large files, and by some estimates it accounts for about 35% of all traffic on the entire Internet.[1]

    The protocol works initially when a file provider makes his file (or group of files) available to the network. This is called a seed and allows others, named peers, to connect and download the file. Each peer who downloads a part of the data makes it available to other peers to download. After the file is successfully downloaded by a peer, many continue to make the data available, becoming additional seeds. This distributed nature of BitTorrent leads to a viral spreading of a file throughout peers. As more seeds get added, the likelihood of a successful connection increases exponentially. Relative to standard Internet hosting, this provides a significant reduction in the original distributor's hardware and bandwidth resource costs. It also provides redundancy against system problems and reduces dependence on the original distributor
  • Requirements: RAIDiator 4.1.6+
  • Platform: Sparc
  • Current Version: 2.04


    Transmission 2.04 (08/07/10)



      • Changes in 2.04:
        • based on the new 2.04 Transmission

        • improved start stop
        • watchdog is removed cause it can full the root
        • Blocklist download timeout (60 sec) during install
        • Scripts are now in /addons-scripts/Transmission
        • Config is now in /addons-config/Transmission
      • To see this new share no need to reboot :)
      • All your download are preserved during this directory change
      • your nas will send you an email with link and release not in case of update
        if you don't want an email remove or rename /addons-config/Transmission/email-allowed

        • All Platforms¶
          • Fix 2.02 bug where new transfers could not be added and the inspector would not appear
          • Fix NAT-PMP port forwarding issue on some systems
          • Fix filename errors for torrents whose files are encoded in ISO-8859-1
          • Fix rare crash on shutdown
          • Fix the RPC server's redirect URL to allow HTTPS proxies like stunnel
          • Replace less-portable calls with posix nanosleep()
        • Daemon¶
          • Nothing

        • Web Ui:¶
          • Fix display bug caused by removal of a torrent hidden by the current filter
          • The context menu now works when multiple rows are selected
          • Show ETA for seeding torrents that have a seed ratio set

      • all ticket closed


      • Web interface on port 8181[/b]
      • default user is : admin
      • default password is : password1
      • Bittorrent port is : 51413
      • Default Download path /c/media/BitTorrent/
      • PeerBlocklist updated each day
      • Settings can be changed in Frontview UI and in Transmission WebInterface and in /addons-config/Transmission/transmission-daemon/settings.json
      • scheduler for bandwidth is removed and now handled by settings.json
      • Transmission can monitor a directory

        New Super-poussin features :
        • Torrent creation interface :
          Torrent file created are in /c/webroot/transmission and also in /c/media/BitTorrent/sources for immediate seeding
          the torrent creation interface is http://younasip/ctransmission (Button available in Frontview)
        • better transmission start/stop script
          you have now 2 script you need to modify to start/stop transmission properly (torrents are stopped and restart in the last state after a reboot for example)

          scripts are in /c/addons-config/Transmission/ :
          transtart.sh
          transtop.sh

          simply replace the passwod in the line (password1 by default)

          New transtart and transtop (people upgrading from version < 2.0.4 must do change by hand

          Code: Select all
          #!/bin/sh
          # *************
          # transmission start  by super-poussin
          # *************
          # Variables
          #
          # Path to transmission-remote
          REMOTE="/usr/local/bin/transmission-remote"

          # Options to be passed to transmission-remote
          TRANSOPT=" localhost:8181 -n admin:password1"
          # *************



          LIST=`cat /c/addons-config/Transmission/downloading.txt`
          for ID in $LIST; do
              $REMOTE $TRANSOPT --torrent $ID --start > /dev/null
          done




          Code: Select all
          #!/bin/sh
          # *************
          # transmission stop  by super-poussin
          # *************
          # Variables
          #
          # Path to transmission-remote
          REMOTE="/usr/local/bin/transmission-remote"

          # Options to be passed to transmission-remote
          TRANSOPT=" localhost:8181 -n admin:password1"
          # *************



          RUNING="$($REMOTE $TRANSOPT -l | tail -n +2 | head -n -1 | grep -v Stopped |awk '{ print $1; }' | awk -F "*" '{ print $1; }')"
          echo $RUNING  > /c/addons-config/Transmission/downloading.txt


          LIST="$($REMOTE $TRANSOPT -l | tail -n +2 | head -n -1 | grep -v Stopped | awk '{ print $1; }' | awk -F "*" '{ print $1; }')"
          for ID in $LIST; do
              $REMOTE $TRANSOPT --torrent $ID --stop > /dev/null
          done



          PS: if you do not change the passwords and they are not matching: transmission will stop as before and you will have a cheking for each torrent at restart
        • email on torrent completion :

          an email is sent when a toorent is finished downloading (using exim if you setup your alert to custom indtead of internal in frontview)
          To be able to receive email you must :

          1st) modif your alert settings in frontview and use custom-provider instead of internal and also use advanced parameters

        • Also:
          if a /Media exist the transmission install will note create a /media to avoid confusion
          if it's an upgrade it will also not try to create subdirectories in /media
          initial start/stop are restored in case you do change in it

      • Installation Notes:

        • Now to change a settings you will need to :
          • Disable Transmission
          • Modify settings.json in /addons-config/Transmission/transmission-daemon/
          • if you upgrade from old version < 1.74 verify that umask is set to 0 in settings.json
          • re-enable transmission

        • New Parameters in settings.json:
          • "dht-enabled": true,
          • "alt-speed-down": 50,
          • "alt-speed-enabled": 0,
          • "alt-speed-time-begin": 540,
          • "alt-speed-time-enabled": 0,
          • "alt-speed-time-end": 1020,
          • "alt-speed-up": 50,
          • "alt-speed-time-day": 127
            • Sun : 1
            • Mon : 2
            • Tues : 4
            • Wen : 8
            • Thurs : 16
            • Frid : 32
            • Sat : 64
            • All the week (Mon to Frid) : 62
            • Only the W.E. : 65
            • All Days : 127

        "alt-speed-down" | number max global download speed (in K/s)
        "alt-speed-enabled" | 0 : disabled 1: enabled enabled means use the alt speeds
        "alt-speed-time-begin" | number when to turn on alt speeds (units: minutes after midnight)
        "alt-speed-time-enabled" | 0 : disabled 1: enabled enabled means the scheduled on/off times are used
        "alt-speed-time-end" | number when to turn off alt speeds (units: same)
        "alt-speed-up" | number max global upload speed (in K/s)
        "blocklist-enabled" | 0 : disabled 1: enabled enabled means enabled
        "download-dir" | string default path to download torrents
        "peer-limit-global" | number maximum global number of peers
        "peer-limit-per-torrent" | number maximum global number of peers
        "pex-enabled" | 0 : disabled 1: enabled enabled means allow pex in public torrents
        "peer-port" | number port number
        "port-forwarding-enabled" | 0 : disabled 1: enabled enabled means enabled
        "trash-original-torrent-files" Boolean (default = false) Delete torrents added from the watch directory.
        "script-torrent-done-enabled" Boolean (default = false) Run a script at torrent completion.
        "script-torrent-done-filename" String (default = "") Path to script.

      • Screenshots:

        Image
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission 1.50

Postby super-poussin » Sat Feb 14, 2009 3:19 am

new 1.50 version
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission 1.51

Postby super-poussin » Fri Feb 27, 2009 2:26 am

updated to 1.51
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Wed Mar 11, 2009 9:34 am

1.52 full with working trans_schedule
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Sun Mar 29, 2009 8:14 am

1.56
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Sat Apr 04, 2009 2:56 am

1.58
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Fri Apr 10, 2009 9:33 am

1.59
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Sat Apr 11, 2009 6:21 am

1.592
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Sun Apr 12, 2009 10:17 am

1.593
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Mon Apr 13, 2009 5:00 am

1.594 based on the new transmission 1.52
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Mon May 04, 2009 11:00 pm

1.60 is out
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Thu Jun 04, 2009 9:59 pm

1.70 is out :)
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Sun Jun 07, 2009 11:46 pm

1.71 is out
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Tue Jun 16, 2009 11:10 pm

1.72 is out
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Re: Transmission

Postby super-poussin » Sun Jul 19, 2009 1:29 am

1.73 is out
If you like my add-ons - Si vous aimez mes add-ons :
Image --- -------- Image
User avatar
super-poussin
ReadyNAS Add-ons Expert
 
Posts: 3935
Joined: Fri Jul 13, 2007 1:16 pm
ReadyNAS: Pro

Next

Return to Community Add-ons for ReadyNAS NV+/Duo

Similar topics


Who is online

Users browsing this forum: Ask Jeeves [Bot] and 6 guests