Advertisement
Guest User

Untitled

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