rhowaldt

rtorrent.rc

Dec 17th, 2011
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. # This is an example resource file for rTorrent. Copy to
  2. # ~/.rtorrent.rc and enable/modify the options as needed. Remember to
  3. # uncomment the options you wish to enable.
  4.  
  5. # send notification to twmn on finished torrent.
  6. system.method.set_key = event.download.finished,notify_me,"execute=~/usr/local/bin/twmn_rtorrent,$d.get_name="
  7.  
  8. # Maximum and minimum number of peers to connect to per torrent.
  9. #min_peers = 40
  10. #max_peers = 100
  11.  
  12. # Same as above but for seeding completed torrents (-1 = same as downloading)
  13. #min_peers_seed = 10
  14. #max_peers_seed = 50
  15.  
  16. # Maximum number of simultanious uploads per torrent.
  17. #max_uploads = 15
  18.  
  19. # Global upload and download rate in KiB. "0" for unlimited.
  20. #download_rate = 0
  21. #upload_rate = 0
  22.  
  23. # Default directory to save the downloaded torrents.
  24. directory = /media/storage/_movie
  25.  
  26. # Default session directory. Make sure you don't run multiple instance
  27. # of rtorrent using the same session directory. Perhaps using a
  28. # relative path?
  29. #session = ./session
  30.  
  31. # Watch a directory for new torrents, and stop those that have been
  32. # deleted.
  33. schedule = watch_directory,5,5,load_start=/media/storage/_movie/.torrent/*.torrent
  34. schedule = untied_directory,5,5,stop_untied=
  35.  
  36. # Close torrents when diskspace is low.
  37. schedule = low_diskspace,5,60,close_low_diskspace=100M
  38.  
  39. # The ip address reported to the tracker.
  40. #ip = 127.0.0.1
  41. #ip = rakshasa.no
  42.  
  43. # The ip address the listening socket and outgoing connections is
  44. # bound to.
  45. #bind = 127.0.0.1
  46. #bind = rakshasa.no
  47.  
  48. # Port range to use for listening.
  49. port_range = 10547-10547
  50.  
  51. # Start opening ports at a random position within the port range.
  52. #port_random = no
  53.  
  54. # Check hash for finished torrents. Might be usefull until the bug is
  55. # fixed that causes lack of diskspace not to be properly reported.
  56. #check_hash = no
  57.  
  58. # Set whetever the client should try to connect to UDP trackers.
  59. use_udp_trackers = yes
  60.  
  61. # Alternative calls to bind and ip that should handle dynamic ip's.
  62. #schedule = ip_tick,0,1800,ip=rakshasa
  63. #schedule = bind_tick,0,1800,bind=rakshasa
  64.  
  65. # Encryption options, set to none (default) or any combination of the following:
  66. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  67. #
  68. # The example value allows incoming encrypted connections, starts unencrypted
  69. # outgoing connections but retries with encryption if they fail, preferring
  70. # plaintext to RC4 encryption after the encrypted handshake
  71. #
  72. # encryption = allow_incoming,enable_retry,prefer_plaintext
  73.  
  74. # Enable DHT support for trackerless torrents or when all trackers are down.
  75. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  76. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  77. # The default is "off". For DHT to work, a session directory must be defined.
  78. #
  79. # dht = auto
  80.  
  81. # UDP port to use for DHT.
  82. #
  83. # dht_port = 6881
  84.  
  85. # Enable peer exchange (for torrents not marked private)
  86. #
  87. # peer_exchange = yes
  88.  
  89. #
  90. # Do not modify the following parameters unless you know what you're doing.
  91. #
  92.  
  93. # Hash read-ahead controls how many MB to request the kernel to read
  94. # ahead. If the value is too low the disk may not be fully utilized,
  95. # while if too high the kernel might not be able to keep the read
  96. # pages in memory thus end up trashing.
  97. #hash_read_ahead = 10
  98.  
  99. # Interval between attempts to check the hash, in milliseconds.
  100. #hash_interval = 100
  101.  
  102. # Number of attempts to check the hash while using the mincore status,
  103. # before forcing. Overworked systems might need lower values to get a
  104. # decent hash checking rate.
  105. #hash_max_tries = 10
Advertisement
Add Comment
Please, Sign In to add comment