Advertisement
Guest User

vrob

a guest
Nov 27th, 2009
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. [options]
  2.  
  3. # Set the path to the aria2c binary.
  4. #Aria2Bin = /usr/bin/aria2c
  5.  
  6. # Clean up leftover aria2 control files.
  7. #Aria2Clean
  8.  
  9. # Suppress aria2c output.
  10. Aria2Silent
  11.  
  12. # Powerpill will log output to this file if this
  13. # option is set.
  14. Log = /var/log/powerpill.log
  15.  
  16. # Suppress colored output.
  17. #NoColor
  18.  
  19. # Set the path to the pacman binary.
  20. # Change this to your preferred pacman binary,
  21. # e.g. pacman-color
  22. PacmanBin = /usr/bin/pacman-color
  23.  
  24. # Set the path to the pacman configuration file.
  25. # Change this if you want to use a custom configuration
  26. # with powerpill.
  27. #PacmanConf = /etc/pacman.conf
  28.  
  29. # Use reflector at runtime to get the latest mirrors.
  30. # Depending on the reflector options that you use,
  31. # this may slow down the overall process while retrieving
  32. # the latest list, so use it wisely.
  33. # Reflect = -l 45
  34.  
  35. # Set the number of times that powerpill will retry a
  36. # download if it fails. This only has an effect when
  37. # run with pacman's noconfirm option.
  38. #RetryLimit = 3
  39.  
  40. # The minimum size a file must be for powerpill to
  41. # split the file for segmented downloading (in MB).
  42. #SplitSize = 5
  43.  
  44.  
  45.  
  46.  
  47.  
  48. # aria2 options
  49. # These follow the same format as the aria2 config file.
  50. # Please refer to the aria2 documentation for more details
  51. # including a complete set of options (proxy settings etc).
  52. # Only the most relevant options have been included here.
  53. [aria2_options]
  54.  
  55. # maximum number of concurrent downloads
  56. # This must be in the range 1-45. Powerpill sets it to 45
  57. # and configures the metalink to adjust the connections
  58. # per file.
  59. #max-concurrent-downloads=45
  60.  
  61. # number of servers to connect to simultaneously
  62. # This only has a limiting effect. Leave it unset to
  63. # connect to the maximum number of servers allowed
  64. # by the settings in the metalink.
  65. #metalink-servers=20
  66.  
  67. # Increasing these settings will lose more time while
  68. # waiting for unresponsive servers but decreasing them
  69. # will miss active servers and lose time while aria2
  70. # tries other servers.
  71. #timeout=5
  72. #max-tries=2
  73. #retry-wait=2
  74.  
  75.  
  76. # lowest acceptable connection speed (0 = disabled)
  77. # Downloads below this speed will be aborted.
  78. # The speed is given in bytes by default. Append "K"
  79. # or "M" for kilobytes or metabytes, resp.
  80. # (1M = 1024K = 1048576)
  81. #lowest-speed-limit=0
  82.  
  83. # maximum total download speed (0 = disabled)
  84. # Use this to throttle the download.
  85. # The speed is given as for lowest-speed-limit above.
  86. #max-overall-download-limit=0
  87.  
  88.  
  89. # Be careful with this. Aria2 can quickly create huge
  90. # log files, depending on the log-level option.
  91. #log=/var/log/aria2.log
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98. # list pkgd-servers on your LAN here
  99. # they will be queried before remote servers
  100. [PkgD]
  101. Server = http://192.168.6.5:14687/$repo
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. # Here you can specify additional mirrors for powerpill.
  110. # The mirrors specified here will not be used by pacman
  111. # and thus the database will never be updated from them.
  112. # These sections follow the same syntax as pacman.conf.
  113.  
  114. # Some of you will recognize this section as the heir
  115. # to the additional_mirrors.conf file. :)
  116.  
  117. # Note that if you use the "reflect" option. there isn't
  118. # any reason to include reflector mirrorlists down here.
  119.  
  120. #[core]
  121. # Server = http://example.com/arch/$repo/
  122. # Include = /path/to/mirrorlist
  123.  
  124. #[extra]
  125. # Server = http://example.com/arch/$repo/
  126. # Include = /path/to/mirrorlist
  127.  
  128. #[community]
  129. # Server = http://example.com/arch/$repo/
  130. # Include = /path/to/mirrorlist
  131.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement