Guest User

Untitled

a guest
Dec 15th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 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. # Clavier
  6. key_layout = azerty
  7.  
  8. # Maximum and minimum number of peers to connect to per torrent.
  9. min_peers = 30
  10. max_peers = 150
  11.  
  12. # Same as above but for seeding completed torrents (-1 = same as downloading)
  13. min_peers_seed = -1
  14. max_peers_seed = -1
  15.  
  16. # Maximum number of simultanious uploads per torrent.
  17. #max_uploads = 100
  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 = ~/torrent/data
  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 = ~/torrent/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=/home/user/torrent/watch/*.torrent"
  34. schedule = untied_directory,5,5,"stop_untied=/home/user/torrent/watch/*.torrent"
  35.  
  36. # Close torrents when diskspace is low.
  37. schedule = low_diskspace,5,60,close_low_diskspace=10000M
  38.  
  39. # Port range to use for listening.
  40. port_range = 55250-55250
  41.  
  42. # Start opening ports at a random position within the port range.
  43. port_random = no
  44.  
  45. # Check hash for finished torrents. Might be usefull until the bug is
  46. # fixed that causes lack of diskspace not to be properly reported.
  47. check_hash = no
  48.  
  49. # Set whetever the client should try to connect to UDP trackers.
  50. use_udp_trackers = yes
  51.  
  52. # Encryption options, set to none (default) or any combination of the following:
  53. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  54. encryption = allow_incoming, try_outgoing, enable_retry
  55.  
  56.  
  57. # Enable DHT support for trackerless torrents or when all trackers are down.
  58. dht = off
  59.  
  60. # Enable peer exchange (for torrents not marked private)
  61. peer_exchange = no
  62.  
  63. # Performance
  64. #max_memory_usage = 3500M
  65.  
  66. # Ajouter la vue des Torrents actifs touche num.9
  67. schedule = filter_active,30,30,"view_filter = active,\"or={d.get_up_rate=,d.get_down_rate=}\""
Add Comment
Please, Sign In to add comment