README 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. aria2 - The high speed download utility
  2. 1. Disclaimer
  3. -------------
  4. This program comes with no warranty.
  5. You must use this program at your own risk.
  6. 2. About aria2
  7. --------------
  8. aria2 has segmented downloading engine in its core. By segmented downloading,
  9. it can download files very much faster than ordinary browsers.
  10. aria2 is in very early development stage. Currently it has following features:
  11. * HTTP/HTTPS GET support
  12. * HTTP Proxy support
  13. * HTTP BASIC authentication support
  14. * HTTP Proxy authentication support
  15. * FTP support(active, passive mode)
  16. * FTP through HTTP proxy(GET command or tunneling)
  17. * Segmented download
  18. * Cookie support(currently aria2 ignores "expires")
  19. * It can run as a daemon process.
  20. * BitTorrent protocol support with fast extension.
  21. * Selective download in multi-file torrent
  22. * Metalink version 3.0 support(HTTP/FTP/BitTorrent).
  23. 3. How to build
  24. ---------------
  25. $ ./configure
  26. $ make
  27. The executable is aria2c in src directory.
  28. 4. Dependency
  29. -------------
  30. In order to enable HTTPS support, you need GNU TLS or OpenSSL.
  31. In order to enable BitTorrent support, you need GNU TLS+libgcrypt or OpenSSL.
  32. In order to enable Metalink support, you need libxml2. Optionally GNU TLS+
  33. libgcrypt or OpenSSL are required for checksum checking support(MD5, SHA1).
  34. GNU TLS has precedence over OpenSSL if both libraries are installed.
  35. If you prefer OpenSSL, run configure with "--without-gnutls".
  36. You can disable BitTorrent, Metalink support by providing --disable-bittorrent,
  37. --disable-metalink respectively to configure script.
  38. In order to enable async DNS support, you need c-ares or ares.
  39. c-ares: http://daniel.haxx.se/projects/c-ares/
  40. ares: ftp://athena-dist.mit.edu/pub/ATHENA/ares
  41. 5. BitTorrrent
  42. --------------
  43. The filename of the downloaded file is determined as follows:
  44. single-file mode:
  45. If "name" key is present in .torrent file, filename is the value of "name"
  46. key. Otherwise, filename is the basename of .torrent file appended by
  47. ".file". For example, .torrent file is "test.torrrent", then filename is
  48. "test.torrent.file".
  49. The directory to store the downloaded file can be specified by -d option.
  50. multi-file mode:
  51. The complete directory/file structure mentioned in .torrent file is
  52. created.
  53. The directory to store the top directory of downloaded files can be
  54. specified by -d option.
  55. In the default behavior, before download starts, complete directory structure
  56. is created if needed. Then aria2 opens all files mentioned in .torrent file,
  57. directly writes to and reads from these files.
  58. NOTE: Even in selective download, all files are opened.
  59. If "--direct-file-mapping" option set to be false, aria2 creates temporary
  60. file in the store directory. The length of this file is the sum of length of
  61. the files in .torrent file, so at least 2 times more disk space than the file
  62. size itself is required. Writing and reading is done against this file.
  63. After download completes, aria2 creates complete directory structure if needed,
  64. and copies whole file or a part of it to the destination.
  65. Note:
  66. * -o option is used to change the filename of downloaded .torrent file.
  67. * This version only supports compact peers list format.
  68. * The ports aria2c uses are 6881-6999.
  69. * The maximum number of peers is 55.
  70. * After selective download completes, aria2 is going to download rest of the
  71. files.
  72. 6. Metalink
  73. -----------
  74. The current implementation supports HTTP/FTP/BitTorrent.
  75. BitTorrent always has precedence over HTTP/FTP.
  76. The other P2P protocols are ignored.
  77. For checksum checking, both MD5 and SHA1 are supported. If both values are
  78. provided, then aria2 uses SHA1. If checksum checking is failed, aria2 doesn't
  79. retry the download and just exits with non-zero return code.
  80. The supported user preferences are version, language and os.