aria2c.rst 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371
  1. aria2c(1)
  2. =========
  3. SYNOPSIS
  4. --------
  5. **aria2c** [<OPTIONS>] [<URI>|<MAGNET>|<TORRENT_FILE>|<METALINK_FILE>] ...
  6. DESCRIPTION
  7. -----------
  8. aria2 is a utility for downloading files. The supported protocols are
  9. HTTP(S), FTP, SFTP, BitTorrent, and Metalink. aria2 can download a
  10. file from multiple sources/protocols and tries to utilize your maximum
  11. download bandwidth. It supports downloading a file from HTTP(S)/FTP
  12. /SFTP and BitTorrent at the same time, while the data downloaded from
  13. HTTP(S)/FTP/SFTP is uploaded to the BitTorrent swarm. Using Metalink
  14. chunk checksums, aria2 automatically validates chunks of data while
  15. downloading a file.
  16. OPTIONS
  17. -------
  18. .. note::
  19. Most FTP related options are applicable to SFTP as well.
  20. Some options are not effective against SFTP (e.g., :option:`--ftp-pasv`)
  21. Basic Options
  22. ~~~~~~~~~~~~~
  23. .. option:: -d, --dir=<DIR>
  24. The directory to store the downloaded file.
  25. .. option:: -i, --input-file=<FILE>
  26. Downloads the URIs listed in ``FILE``. You can specify multiple sources for a
  27. single entity by putting multiple URIs on a single line separated by the
  28. :kbd:`TAB` character.
  29. Additionally, options can be specified after each URI line. Option lines
  30. must start with one or more white space characters (:kbd:`SPACE` or :kbd:`TAB`)
  31. and must only contain one option per line.
  32. Input files can use gzip compression.
  33. When ``FILE`` is specified as ``-``, aria2 will read the input from ``stdin``.
  34. See the `Input File`_ subsection for details.
  35. See also the :option:`--deferred-input` option.
  36. See also the :option:`--save-session` option.
  37. .. option:: -l, --log=<LOG>
  38. The file name of the log file. If ``-`` is specified, log is written to
  39. ``stdout``. If empty string("") is specified, or this option is omitted,
  40. no log is written to disk at all.
  41. .. option:: -j, --max-concurrent-downloads=<N>
  42. Set the maximum number of parallel downloads for every queue item.
  43. See also the :option:`--split <-s>` option.
  44. Default: ``5``
  45. .. option:: -V, --check-integrity[=true|false]
  46. Check file integrity by validating piece hashes or a hash of entire
  47. file. This option has effect only in BitTorrent, Metalink downloads
  48. with checksums or HTTP(S)/FTP downloads with
  49. :option:`--checksum` option. If
  50. piece hashes are provided, this option can detect damaged portions
  51. of a file and re-download them. If a hash of entire file is
  52. provided, hash check is only done when file has been already
  53. download. This is determined by file length. If hash check fails,
  54. file is re-downloaded from scratch. If both piece hashes and a hash
  55. of entire file are provided, only piece hashes are used. Default:
  56. ``false``
  57. .. option:: -c, --continue[=true|false]
  58. Continue downloading a partially downloaded file.
  59. Use this option to resume a download started by a web browser or another
  60. program which downloads files sequentially from the beginning.
  61. Currently this option is only applicable to HTTP(S)/FTP downloads.
  62. .. option:: -h, --help[=<TAG>|<KEYWORD>]
  63. The help messages are classified with tags. A tag starts with
  64. ``#``. For example, type ``--help=#http`` to get the usage for the
  65. options tagged with ``#http``. If non-tag word is given, print the
  66. usage for the options whose name includes that word. Available
  67. Values: ``#basic``, ``#advanced``, ``#http``, ``#https``, ``#ftp``,
  68. ``#metalink``, ``#bittorrent``, ``#cookie``, ``#hook``, ``#file``, ``#rpc``,
  69. ``#checksum``, ``#experimental``, ``#deprecated``, ``#help``, ``#all``
  70. Default: ``#basic``
  71. HTTP/FTP/SFTP Options
  72. ~~~~~~~~~~~~~~~~~~~~~
  73. .. option:: --all-proxy=<PROXY>
  74. Use a proxy server for all protocols. To override a previously
  75. defined proxy, use "". You also can override this setting and specify a
  76. proxy server for a particular protocol using :option:`--http-proxy`,
  77. :option:`--https-proxy` and :option:`--ftp-proxy` options. This affects all
  78. downloads.
  79. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``.
  80. See also `ENVIRONMENT`_ section.
  81. .. note::
  82. If user and password are embedded in proxy URI and they are also
  83. specified by *--{http,https,ftp,all}-proxy-{user,passwd}* options,
  84. those specified later override prior options. For example, if you specified
  85. ``http-proxy-user=myname``, ``http-proxy-passwd=mypass`` in aria2.conf and
  86. you specified ``--http-proxy="http://proxy"`` on the command-line, then
  87. you'd get HTTP proxy ``http://proxy`` with user ``myname`` and password
  88. ``mypass``.
  89. Another example: if you specified on the command-line
  90. ``--http-proxy="http://user:pass@proxy" --http-proxy-user="myname"
  91. --http-proxy-passwd="mypass"``, then you'd get HTTP proxy
  92. ``http://proxy`` with user ``myname`` and password ``mypass``.
  93. One more example: if you specified in command-line ``--http-proxy-user="myname"
  94. --http-proxy-passwd="mypass" --http-proxy="http://user:pass@proxy"``,
  95. then you'd get HTTP proxy ``http://proxy`` with user ``user`` and password
  96. ``pass``.
  97. .. option:: --all-proxy-passwd=<PASSWD>
  98. Set password for :option:`--all-proxy` option.
  99. .. option:: --all-proxy-user=<USER>
  100. Set user for :option:`--all-proxy` option.
  101. .. option:: --checksum=<TYPE>=<DIGEST>
  102. Set checksum. TYPE is hash type. The supported hash type is listed
  103. in ``Hash Algorithms`` in ``aria2c -v``. DIGEST is hex digest. For
  104. example, setting sha-1 digest looks like this:
  105. ``sha-1=0192ba11326fe2298c8cb4de616f4d4140213838`` This option applies
  106. only to HTTP(S)/FTP downloads.
  107. .. option:: --connect-timeout=<SEC>
  108. Set the connect timeout in seconds to establish connection to
  109. HTTP/FTP/proxy server. After the connection is established, this
  110. option makes no effect and :option:`--timeout <-t>` option is used instead.
  111. Default: ``60``
  112. .. option:: --dry-run[=true|false]
  113. If ``true`` is given, aria2 just checks whether the remote file is
  114. available and doesn't download data. This option has effect on
  115. HTTP/FTP download. BitTorrent downloads are canceled if ``true`` is
  116. specified. Default: ``false``
  117. .. option:: --lowest-speed-limit=<SPEED>
  118. Close connection if download speed is lower than or equal to this
  119. value(bytes per sec).
  120. ``0`` means aria2 does not have a lowest speed limit.
  121. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  122. This option does not affect BitTorrent downloads.
  123. Default: ``0``
  124. .. option:: -x, --max-connection-per-server=<NUM>
  125. The maximum number of connections to one server for each download.
  126. Default: ``1``
  127. .. option:: --max-file-not-found=<NUM>
  128. If aria2 receives "file not found" status from the remote HTTP/FTP
  129. servers NUM times without getting a single byte, then force the
  130. download to fail. Specify ``0`` to disable this option. This options
  131. is effective only when using HTTP/FTP servers. The number of retry
  132. attempt is counted toward :option:`--max-tries`, so it should be
  133. configured too.
  134. Default: ``0``
  135. .. option:: -m, --max-tries=<N>
  136. Set number of tries. ``0`` means unlimited.
  137. See also :option:`--retry-wait`.
  138. Default: ``5``
  139. .. option:: -k, --min-split-size=<SIZE>
  140. aria2 does not split less than 2*SIZE byte range. For example,
  141. let's consider downloading 20MiB file. If SIZE is 10M, aria2 can
  142. split file into 2 range [0-10MiB) and [10MiB-20MiB) and download it
  143. using 2 sources(if :option:`--split <-s>` >= 2, of course). If SIZE is 15M,
  144. since 2*15M > 20MiB, aria2 does not split file and download it using
  145. 1 source. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  146. Possible Values: ``1M`` -``1024M`` Default: ``20M``
  147. .. option:: --netrc-path=<FILE>
  148. Specify the path to the netrc file.
  149. Default: ``$(HOME)/.netrc``
  150. .. note::
  151. Permission of the .netrc file must be 600. Otherwise, the file
  152. will be ignored.
  153. .. option:: -n, --no-netrc[=true|false]
  154. Disables netrc support. netrc support is enabled by default.
  155. .. note::
  156. netrc file is only read at the startup if
  157. :option:`--no-netrc <-n>` is ``false``.
  158. So if :option:`--no-netrc <-n>` is ``true`` at the startup,
  159. no netrc is available throughout the session.
  160. You cannot get netrc enabled even if you send
  161. :option:`--no-netrc=false <-n>` using
  162. :func:`aria2.changeGlobalOption`.
  163. .. option:: --no-proxy=<DOMAINS>
  164. Specify a comma separated list of host names, domains and network addresses
  165. with or without a subnet mask where no proxy should be used.
  166. .. note::
  167. For network addresses with a subnet mask, both IPv4 and IPv6 addresses work.
  168. The current implementation does not resolve the host name in an URI to compare
  169. network addresses specified in :option:`--no-proxy`. So it is only effective
  170. if URI has numeric IP addresses.
  171. .. option:: -o, --out=<FILE>
  172. The file name of the downloaded file. It is always relative to the
  173. directory given in :option:`--dir <-d>` option. When the
  174. :option:`--force-sequential <-Z>` option is used, this option is
  175. ignored.
  176. .. note::
  177. You cannot specify a file name for Metalink or BitTorrent downloads.
  178. The file name specified here is only used when the URIs fed to aria2
  179. are given on the command line directly, but not when using
  180. :option:`--input-file <-i>`, :option:`--force-sequential <-Z>` option.
  181. Example:
  182. .. code-block:: console
  183. $ aria2c -o myfile.zip "http://mirror1/file.zip" "http://mirror2/file.zip"
  184. .. option:: --proxy-method=<METHOD>
  185. Set the method to use in proxy request. METHOD is either ``get`` or
  186. ``tunnel``. HTTPS downloads always use ``tunnel`` regardless of this
  187. option.
  188. Default: ``get``
  189. .. option:: -R, --remote-time[=true|false]
  190. Retrieve timestamp of the remote file from the remote HTTP/FTP
  191. server and if it is available, apply it to the local file.
  192. Default: ``false``
  193. .. option:: --reuse-uri[=true|false]
  194. Reuse already used URIs if no unused URIs are left.
  195. Default: ``true``
  196. .. option:: --retry-wait=<SEC>
  197. Set the seconds to wait between retries. When ``SEC > 0``, aria2 will
  198. retry downloads when the HTTP server returns a 503 response. Default:
  199. ``0``
  200. .. option:: --server-stat-of=<FILE>
  201. Specify the file name to which performance profile of the servers is
  202. saved. You can load saved data using :option:`--server-stat-if` option. See
  203. `Server Performance Profile`_
  204. subsection below for file format.
  205. .. option:: --server-stat-if=<FILE>
  206. Specify the file name to load performance profile of the servers. The
  207. loaded data will be used in some URI selector such as ``feedback``.
  208. See also :option:`--uri-selector` option. See
  209. `Server Performance Profile`_
  210. subsection below for file format.
  211. .. option:: --server-stat-timeout=<SEC>
  212. Specifies timeout in seconds to invalidate performance profile of
  213. the servers since the last contact to them.
  214. Default: ``86400`` (24hours)
  215. .. option:: -s, --split=<N>
  216. Download a file using N connections. If more than N URIs are given,
  217. first N URIs are used and remaining URIs are used for backup. If
  218. less than N URIs are given, those URIs are used more than once so
  219. that N connections total are made simultaneously. The number of
  220. connections to the same host is restricted by the
  221. :option:`--max-connection-per-server <-x>` option.
  222. See also the :option:`--min-split-size <-k>` option.
  223. Default: ``5``
  224. .. note::
  225. Some Metalinks regulate the number of servers to connect. aria2
  226. strictly respects them. This means that if Metalink defines the
  227. ``maxconnections`` attribute lower than N, then aria2 uses the
  228. value of this lower value instead of N.
  229. .. option:: --stream-piece-selector=<SELECTOR>
  230. Specify piece selection algorithm used in HTTP/FTP download. Piece
  231. means fixed length segment which is downloaded in parallel in
  232. segmented download. If ``default`` is given, aria2 selects piece so
  233. that it reduces the number of establishing connection. This is
  234. reasonable default behavior because establishing connection is an
  235. expensive operation. If ``inorder`` is given, aria2 selects piece
  236. which has minimum index. Index=0 means first of the file. This will
  237. be useful to view movie while downloading it.
  238. :option:`--enable-http-pipelining` option may
  239. be useful to reduce re-connection overhead. Please note that aria2
  240. honors
  241. :option:`--min-split-size <-k>` option,
  242. so it will be necessary to specify a reasonable value to
  243. :option:`--min-split-size <-k>` option.
  244. If ``random`` is given, aria2 selects piece randomly. Like
  245. ``inorder``, :option:`--min-split-size <-k>` option is honored.
  246. If ``geom`` is given, at the beginning aria2 selects piece which has
  247. minimum index like ``inorder``, but it exponentially increasingly
  248. keeps space from previously selected piece. This will reduce the
  249. number of establishing connection and at the same time it will
  250. download the beginning part of the file first. This will be useful
  251. to view movie while downloading it.
  252. Default: ``default``
  253. .. option:: -t, --timeout=<SEC>
  254. Set timeout in seconds.
  255. Default: ``60``
  256. .. option:: --uri-selector=<SELECTOR>
  257. Specify URI selection algorithm. The possible values are ``inorder``,
  258. ``feedback`` and ``adaptive``. If ``inorder`` is given, URI is tried in
  259. the order appeared in the URI list. If ``feedback`` is given, aria2
  260. uses download speed observed in the previous downloads and choose
  261. fastest server in the URI list. This also effectively skips dead
  262. mirrors. The observed download speed is a part of performance
  263. profile of servers mentioned in :option:`--server-stat-of` and
  264. :option:`--server-stat-if` options. If ``adaptive`` is given, selects one of
  265. the best mirrors for the first and reserved connections. For
  266. supplementary ones, it returns mirrors which has not been tested
  267. yet, and if each of them has already been tested, returns mirrors
  268. which has to be tested again. Otherwise, it doesn't select anymore
  269. mirrors. Like ``feedback``, it uses a performance profile of servers.
  270. Default: ``feedback``
  271. HTTP Specific Options
  272. ~~~~~~~~~~~~~~~~~~~~~
  273. .. option:: --ca-certificate=<FILE>
  274. Use the certificate authorities in FILE to verify the peers.
  275. The certificate file must be in PEM format and can contain multiple CA
  276. certificates.
  277. Use :option:`--check-certificate` option to enable verification.
  278. .. note::
  279. If you build with OpenSSL or the recent version of GnuTLS which
  280. has ``gnutls_certificate_set_x509_system_trust()`` function and
  281. the library is properly configured to locate the system-wide CA
  282. certificates store, aria2 will automatically load those
  283. certificates at the startup.
  284. .. note::
  285. *WinTLS* and *AppleTLS* do not support this option. Instead you will
  286. have to import the certificate into the OS trust store.
  287. .. option:: --certificate=<FILE>
  288. Use the client certificate in FILE. The certificate must be
  289. either in PKCS12 (.p12, .pfx) or in PEM format.
  290. PKCS12 files must contain the certificate, a key and optionally a chain
  291. of additional certificates. Only PKCS12 files with a blank import password
  292. can be opened!
  293. When using PEM, you have to specify the private key via :option:`--private-key`
  294. as well.
  295. .. note::
  296. *WinTLS* does not support PEM files at the moment. Users have to use PKCS12
  297. files.
  298. .. note::
  299. *AppleTLS* users should use the KeyChain Access utility to import the client
  300. certificate and get the SHA-1 fingerprint from the Information dialog
  301. corresponding to that certificate.
  302. To start aria2c use `--certificate=<SHA-1>`.
  303. Alternatively PKCS12 files are also supported. PEM files, however, are not
  304. supported.
  305. .. option:: --check-certificate[=true|false]
  306. Verify the peer using certificates specified in :option:`--ca-certificate` option.
  307. Default: ``true``
  308. .. option:: --http-accept-gzip[=true|false]
  309. Send ``Accept: deflate, gzip`` request header and inflate response if
  310. remote server responds with ``Content-Encoding: gzip`` or
  311. ``Content-Encoding: deflate``. Default: ``false``
  312. .. note::
  313. Some server responds with ``Content-Encoding: gzip`` for files which
  314. itself is gzipped file. aria2 inflates them anyway because of the
  315. response header.
  316. .. option:: --http-auth-challenge[=true|false]
  317. Send HTTP authorization header only when it is requested by the
  318. server. If ``false`` is set, then authorization header is always sent
  319. to the server. There is an exception: if user name and password are
  320. embedded in URI, authorization header is always sent to the server
  321. regardless of this option. Default: ``false``
  322. .. option:: --http-no-cache[=true|false]
  323. Send ``Cache-Control: no-cache`` and ``Pragma: no-cache`` header to avoid
  324. cached content. If ``false`` is given, these headers are not sent
  325. and you can add Cache-Control header with a directive you like
  326. using :option:`--header` option. Default: ``false``
  327. .. option:: --http-user=<USER>
  328. Set HTTP user. This affects all URIs.
  329. .. option:: --http-passwd=<PASSWD>
  330. Set HTTP password. This affects all URIs.
  331. .. option:: --http-proxy=<PROXY>
  332. Use a proxy server for HTTP. To override a previously defined proxy,
  333. use "".
  334. See also the :option:`--all-proxy` option. This affects all http downloads.
  335. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  336. .. option:: --http-proxy-passwd=<PASSWD>
  337. Set password for :option:`--http-proxy`.
  338. .. option:: --http-proxy-user=<USER>
  339. Set user for :option:`--http-proxy`.
  340. .. option:: --https-proxy=<PROXY>
  341. Use a proxy server for HTTPS. To override a previously defined proxy,
  342. use "".
  343. See also the :option:`--all-proxy` option. This affects all https download.
  344. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  345. .. option:: --https-proxy-passwd=<PASSWD>
  346. Set password for :option:`--https-proxy`.
  347. .. option:: --https-proxy-user=<USER>
  348. Set user for :option:`--https-proxy`.
  349. .. option:: --private-key=<FILE>
  350. Use the private key in FILE.
  351. The private key must be decrypted and in PEM format.
  352. The behavior when encrypted one is given is undefined.
  353. See also :option:`--certificate` option.
  354. .. option:: --referer=<REFERER>
  355. Set an http referrer (Referer). This affects all http/https downloads.
  356. If ``*`` is given, the download URI is also used as the referrer.
  357. This may be useful when used together with the
  358. :option:`--parameterized-uri <-P>` option.
  359. .. option:: --enable-http-keep-alive[=true|false]
  360. Enable HTTP/1.1 persistent connection.
  361. Default: ``true``
  362. .. option:: --enable-http-pipelining[=true|false]
  363. Enable HTTP/1.1 pipelining.
  364. Default: ``false``
  365. .. note::
  366. In performance perspective, there is usually no advantage to enable
  367. this option.
  368. .. option:: --header=<HEADER>
  369. Append HEADER to HTTP request header.
  370. You can use this option repeatedly to specify more than one header:
  371. .. code-block:: console
  372. $ aria2c --header="X-A: b78" --header="X-B: 9J1" "http://host/file"
  373. .. option:: --load-cookies=<FILE>
  374. Load Cookies from FILE using the Firefox3 format (SQLite3),
  375. Chromium/Google Chrome (SQLite3) and the
  376. Mozilla/Firefox(1.x/2.x)/Netscape format.
  377. .. note::
  378. If aria2 is built without libsqlite3, then it doesn't support Firefox3
  379. and Chromium/Google Chrome cookie format.
  380. .. option:: --save-cookies=<FILE>
  381. Save Cookies to FILE in Mozilla/Firefox(1.x/2.x)/ Netscape
  382. format. If FILE already exists, it is overwritten. Session Cookies
  383. are also saved and their expiry values are treated as 0. Possible
  384. Values: ``/path/to/file``
  385. .. option:: --use-head[=true|false]
  386. Use HEAD method for the first request to the HTTP server.
  387. Default: ``false``
  388. .. option:: -U, --user-agent=<USER_AGENT>
  389. Set user agent for HTTP(S) downloads.
  390. Default: ``aria2/$VERSION``, $VERSION is replaced by package version.
  391. FTP/SFTP Specific Options
  392. ~~~~~~~~~~~~~~~~~~~~~~~~~
  393. .. option:: --ftp-user=<USER>
  394. Set FTP user. This affects all URIs.
  395. Default: ``anonymous``
  396. .. option:: --ftp-passwd=<PASSWD>
  397. Set FTP password. This affects all URIs.
  398. If user name is embedded but password is missing in URI, aria2 tries
  399. to resolve password using .netrc. If password is found in .netrc,
  400. then use it as password. If not, use the password specified in this
  401. option.
  402. Default: ``ARIA2USER@``
  403. .. option:: -p, --ftp-pasv[=true|false]
  404. Use the passive mode in FTP.
  405. If ``false`` is given, the active mode will be used.
  406. Default: ``true``
  407. .. note::
  408. This option is ignored for SFTP transfer.
  409. .. option:: --ftp-proxy=<PROXY>
  410. Use a proxy server for FTP. To override a previously defined proxy,
  411. use "".
  412. See also the :option:`--all-proxy` option. This affects all ftp downloads.
  413. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  414. .. option:: --ftp-proxy-passwd=<PASSWD>
  415. Set password for :option:`--ftp-proxy` option.
  416. .. option:: --ftp-proxy-user=<USER>
  417. Set user for :option:`--ftp-proxy` option.
  418. .. option:: --ftp-type=<TYPE>
  419. Set FTP transfer type. TYPE is either ``binary`` or ``ascii``.
  420. Default: ``binary``
  421. .. note::
  422. This option is ignored for SFTP transfer.
  423. .. option:: --ftp-reuse-connection[=true|false]
  424. Reuse connection in FTP.
  425. Default: ``true``
  426. .. option:: --ssh-host-key-md=<TYPE>=<DIGEST>
  427. Set checksum for SSH host public key. TYPE is hash type. The
  428. supported hash type is ``sha-1`` or ``md5``. DIGEST is hex
  429. digest. For example:
  430. ``sha-1=b030503d4de4539dc7885e6f0f5e256704edf4c3``. This option can
  431. be used to validate server's public key when SFTP is used. If this
  432. option is not set, which is default, no validation takes place.
  433. BitTorrent/Metalink Options
  434. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  435. .. option:: --select-file=<INDEX>...
  436. Set file to download by specifying its index.
  437. You can find the file index using the :option:`--show-files <-S>` option.
  438. Multiple indexes can be specified by using ``,``, for example: ``3,6``.
  439. You can also use ``-`` to specify a range: ``1-5``.
  440. ``,`` and ``-`` can be used together: ``1-5,8,9``.
  441. When used with the -M option, index may vary depending on the query
  442. (see *--metalink-\** options).
  443. .. note::
  444. In multi file torrent, the adjacent files specified by this option may
  445. also be downloaded. This is by design, not a bug.
  446. A single piece may include several files or part of files, and aria2
  447. writes the piece to the appropriate files.
  448. .. option:: -S, --show-files[=true|false]
  449. Print file listing of ".torrent", ".meta4" and ".metalink" file and exit.
  450. In case of ".torrent" file, additional information
  451. (infohash, piece length, etc) is also printed.
  452. BitTorrent Specific Options
  453. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  454. .. option:: --bt-detach-seed-only[=true|false]
  455. Exclude seed only downloads when counting concurrent active
  456. downloads (See :option:`-j` option). This means that if ``-j3`` is
  457. given and this option is turned on and 3 downloads are active and
  458. one of those enters seed mode, then it is excluded from active
  459. download count (thus it becomes 2), and the next download waiting in
  460. queue gets started. But be aware that seeding item is still
  461. recognized as active download in RPC method. Default: ``false``
  462. .. option:: --bt-enable-hook-after-hash-check[=true|false]
  463. Allow hook command invocation after hash check (see :option:`-V`
  464. option) in BitTorrent download. By default, when hash check
  465. succeeds, the command given by :option:`--on-bt-download-complete`
  466. is executed. To disable this action, give ``false`` to this option.
  467. Default: ``true``
  468. .. option:: --bt-enable-lpd[=true|false]
  469. Enable Local Peer Discovery. If a private flag is set in a torrent,
  470. aria2 doesn't use this feature for that download even if ``true`` is
  471. given. Default: ``false``
  472. .. option:: --bt-exclude-tracker=<URI>[,...]
  473. Comma separated list of BitTorrent tracker's announce URI to
  474. remove. You can use special value ``*`` which matches all URIs, thus
  475. removes all announce URIs. When specifying ``*`` in shell
  476. command-line, don't forget to escape or quote it. See also
  477. :option:`--bt-tracker` option.
  478. .. option:: --bt-external-ip=<IPADDRESS>
  479. Specify the external IP address to use in BitTorrent download and DHT.
  480. It may be sent to BitTorrent tracker. For DHT, this option should be
  481. set to report that local node is downloading a particular torrent.
  482. This is critical to use DHT in a private network. Although this
  483. function is named ``external``, it can accept any kind of IP
  484. addresses.
  485. .. option:: --bt-force-encryption[=true|false]
  486. Requires BitTorrent message payload encryption with arc4. This is a
  487. shorthand of :option:`--bt-require-crypto`
  488. :option:`--bt-min-crypto-level`\=arc4. This option does not change
  489. the option value of those options. If ``true`` is given, deny
  490. legacy BitTorrent handshake and only use Obfuscation handshake and
  491. always encrypt message payload. Default: ``false``
  492. .. option:: --bt-hash-check-seed[=true|false]
  493. If ``true`` is given, after hash check using :option:`--check-integrity <-V>` option and
  494. file is complete, continue to seed file. If you want to check file
  495. and download it only when it is damaged or incomplete, set this
  496. option to ``false``. This option has effect only on BitTorrent download.
  497. Default: ``true``
  498. .. option:: --bt-lpd-interface=<INTERFACE>
  499. Use given interface for Local Peer Discovery. If this option is not
  500. specified, the default interface is chosen. You can specify
  501. interface name and IP address. Possible Values: interface, IP
  502. address
  503. .. option:: --bt-max-open-files=<NUM>
  504. Specify maximum number of files to open in multi-file
  505. BitTorrent/Metalink download globally.
  506. Default: ``100``
  507. .. option:: --bt-max-peers=<NUM>
  508. Specify the maximum number of peers per torrent. ``0`` means
  509. unlimited. See also :option:`--bt-request-peer-speed-limit` option.
  510. Default: ``55``
  511. .. option:: --bt-metadata-only[=true|false]
  512. Download meta data only. The file(s) described in meta data will not
  513. be downloaded. This option has effect only when BitTorrent Magnet
  514. URI is used. See also :option:`--bt-save-metadata` option. Default: ``false``
  515. .. option:: --bt-min-crypto-level=plain|arc4
  516. Set minimum level of encryption method.
  517. If several encryption methods are provided by a peer, aria2 chooses the lowest
  518. one which satisfies the given level.
  519. Default: ``plain``
  520. .. option:: --bt-prioritize-piece=head[=<SIZE>],tail[=<SIZE>]
  521. Try to download first and last pieces of each file first. This is
  522. useful for previewing files. The argument can contain 2 keywords:
  523. ``head`` and ``tail``. To include both keywords, they must be separated
  524. by comma. These keywords can take one parameter, SIZE. For example,
  525. if ``head=<SIZE>`` is specified, pieces in the range of first SIZE bytes
  526. of each file get higher priority. ``tail=<SIZE>`` means the range of
  527. last SIZE bytes of each file. SIZE can include ``K`` or ``M`` (1K = 1024,
  528. 1M = 1024K). If SIZE is omitted, SIZE=1M is used.
  529. .. option:: --bt-remove-unselected-file[=true|false]
  530. Removes the unselected files when download is completed in
  531. BitTorrent. To select files, use
  532. :option:`--select-file` option. If it is
  533. not used, all files are assumed to be selected. Please use this
  534. option with care because it will actually remove files from your
  535. disk.
  536. Default: ``false``
  537. .. option:: --bt-require-crypto[=true|false]
  538. If ``true`` is given, aria2 doesn't accept and establish connection with legacy
  539. BitTorrent handshake(\\19BitTorrent protocol).
  540. Thus aria2 always uses Obfuscation handshake.
  541. Default: ``false``
  542. .. option:: --bt-request-peer-speed-limit=<SPEED>
  543. If the whole download speed of every torrent is lower than SPEED,
  544. aria2 temporarily increases the number of peers to try for more
  545. download speed. Configuring this option with your preferred download
  546. speed can increase your download speed in some cases.
  547. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  548. Default: ``50K``
  549. .. option:: --bt-save-metadata[=true|false]
  550. Save meta data as ".torrent" file. This option has effect only when
  551. BitTorrent Magnet URI is used. The file name is hex encoded info
  552. hash with suffix ".torrent". The directory to be saved is the same
  553. directory where download file is saved. If the same file already
  554. exists, meta data is not saved. See also :option:`--bt-metadata-only`
  555. option. Default: ``false``
  556. .. option:: --bt-seed-unverified[=true|false]
  557. Seed previously downloaded files without verifying piece hashes.
  558. Default: ``false``
  559. .. option:: --bt-stop-timeout=<SEC>
  560. Stop BitTorrent download if download speed is 0 in consecutive SEC
  561. seconds. If ``0`` is given, this feature is disabled. Default: ``0``
  562. .. option:: --bt-tracker=<URI>[,...]
  563. Comma separated list of additional BitTorrent tracker's announce
  564. URI. These URIs are not affected by :option:`--bt-exclude-tracker` option
  565. because they are added after URIs in :option:`--bt-exclude-tracker` option are
  566. removed.
  567. .. option:: --bt-tracker-connect-timeout=<SEC>
  568. Set the connect timeout in seconds to establish connection to
  569. tracker. After the connection is established, this option makes no
  570. effect and :option:`--bt-tracker-timeout` option is used instead. Default:
  571. ``60``
  572. .. option:: --bt-tracker-interval=<SEC>
  573. Set the interval in seconds between tracker requests. This
  574. completely overrides interval value and aria2 just uses this value
  575. and ignores the min interval and interval value in the response of
  576. tracker. If ``0`` is set, aria2 determines interval based on the
  577. response of tracker and the download progress. Default: ``0``
  578. .. option:: --bt-tracker-timeout=<SEC>
  579. Set timeout in seconds. Default: ``60``
  580. .. option:: --dht-entry-point=<HOST>:<PORT>
  581. Set host and port as an entry point to IPv4 DHT network.
  582. .. option:: --dht-entry-point6=<HOST>:<PORT>
  583. Set host and port as an entry point to IPv6 DHT network.
  584. .. option:: --dht-file-path=<PATH>
  585. Change the IPv4 DHT routing table file to PATH.
  586. Default: ``$HOME/.aria2/dht.dat`` if present, otherwise
  587. ``$XDG_CACHE_HOME/aria2/dht.dat``.
  588. .. option:: --dht-file-path6=<PATH>
  589. Change the IPv6 DHT routing table file to PATH.
  590. Default: ``$HOME/.aria2/dht6.dat`` if present, otherwise
  591. ``$XDG_CACHE_HOME/aria2/dht6.dat``.
  592. .. option:: --dht-listen-addr6=<ADDR>
  593. Specify address to bind socket for IPv6 DHT. It should be a global
  594. unicast IPv6 address of the host.
  595. .. option:: --dht-listen-port=<PORT>...
  596. Set UDP listening port used by DHT(IPv4, IPv6) and UDP tracker.
  597. Multiple ports can be specified by using ``,``, for example:
  598. ``6881,6885``. You can also use ``-`` to specify a range:
  599. ``6881-6999``. ``,`` and ``-`` can be used together.
  600. Default: ``6881-6999``
  601. .. note::
  602. Make sure that the specified ports are open for incoming UDP traffic.
  603. .. option:: --dht-message-timeout=<SEC>
  604. Set timeout in seconds. Default: ``10``
  605. .. option:: --enable-dht[=true|false]
  606. Enable IPv4 DHT functionality. It also enables UDP tracker
  607. support. If a private flag is set in a torrent, aria2 doesn't use
  608. DHT for that download even if ``true`` is given. Default: ``true``
  609. .. option:: --enable-dht6[=true|false]
  610. Enable IPv6 DHT functionality. If a private flag is set in a
  611. torrent, aria2 doesn't use DHT for that download even if ``true`` is
  612. given. Use :option:`--dht-listen-port` option to specify port number to
  613. listen on. See also :option:`--dht-listen-addr6` option.
  614. .. option:: --enable-peer-exchange[=true|false]
  615. Enable Peer Exchange extension. If a private flag is set in a torrent, this
  616. feature is disabled for that download even if ``true`` is given.
  617. Default: ``true``
  618. .. option:: --follow-torrent=true|false|mem
  619. If ``true`` or ``mem`` is specified, when a file whose suffix is ``.torrent`` or content
  620. type is ``application/x-bittorrent`` is downloaded, aria2 parses it as a torrent
  621. file and downloads files mentioned in it.
  622. If ``mem`` is specified, a torrent file is not written to the disk, but is just
  623. kept in memory.
  624. If ``false`` is specified, the ``.torrent`` file is downloaded to the disk, but
  625. is not parsed as a torrent and its contents are not downloaded.
  626. Default: ``true``
  627. .. option:: -O, --index-out=<INDEX>=<PATH>
  628. Set file path for file with index=INDEX. You can find the file index
  629. using the :option:`--show-files <-S>` option. PATH is a relative path to the
  630. path specified in :option:`--dir <-d>` option. You can use this option multiple
  631. times. Using this option, you can specify the output file names of
  632. BitTorrent downloads.
  633. .. option:: --listen-port=<PORT>...
  634. Set TCP port number for BitTorrent downloads.
  635. Multiple ports can be specified by using ``,``, for example: ``6881,6885``.
  636. You can also use ``-`` to specify a range: ``6881-6999``.
  637. ``,`` and ``-`` can be used together: ``6881-6889,6999``.
  638. Default: ``6881-6999``
  639. .. note::
  640. Make sure that the specified ports are open for incoming TCP traffic.
  641. .. option:: --max-overall-upload-limit=<SPEED>
  642. Set max overall upload speed in bytes/sec.
  643. ``0`` means unrestricted.
  644. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  645. To limit the upload speed per torrent, use :option:`--max-upload-limit <-u>` option.
  646. Default: ``0``
  647. .. option:: -u, --max-upload-limit=<SPEED>
  648. Set max upload speed per each torrent in bytes/sec.
  649. ``0`` means unrestricted.
  650. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  651. To limit the overall upload speed, use :option:`--max-overall-upload-limit` option.
  652. Default: ``0``
  653. .. option:: --peer-id-prefix=<PEER_ID_PREFIX>
  654. Specify the prefix of peer ID. The peer ID in
  655. BitTorrent is 20 byte length. If more than 20
  656. bytes are specified, only first 20 bytes are
  657. used. If less than 20 bytes are specified, random
  658. byte data are added to make its length 20 bytes.
  659. Default: ``A2-$MAJOR-$MINOR-$PATCH-``, $MAJOR, $MINOR and $PATCH are
  660. replaced by major, minor and patch version number respectively. For
  661. instance, aria2 version 1.18.8 has prefix ID ``A2-1-18-8-``.
  662. .. option:: --seed-ratio=<RATIO>
  663. Specify share ratio. Seed completed torrents until share ratio reaches
  664. RATIO.
  665. You are strongly encouraged to specify equals or more than ``1.0`` here.
  666. Specify ``0.0`` if you intend to do seeding regardless of share ratio.
  667. If :option:`--seed-time` option is specified along with this option, seeding ends when
  668. at least one of the conditions is satisfied.
  669. Default: ``1.0``
  670. .. option:: --seed-time=<MINUTES>
  671. Specify seeding time in (fractional) minutes. Also see the
  672. :option:`--seed-ratio` option.
  673. .. note::
  674. Specifying :option:`--seed-time=0 <--seed-time>` disables seeding after download completed.
  675. .. option:: -T, --torrent-file=<TORRENT_FILE>
  676. The path to the ".torrent" file. You are not required to use this
  677. option because you can specify ".torrent" files without :option:`--torrent-file <-T>`.
  678. Metalink Specific Options
  679. ~~~~~~~~~~~~~~~~~~~~~~~~~
  680. .. option:: --follow-metalink=true|false|mem
  681. If ``true`` or ``mem`` is specified, when a file whose suffix is ``.meta4`` or ``.metalink`` or content
  682. type of ``application/metalink4+xml`` or ``application/metalink+xml`` is downloaded, aria2 parses it as a metalink
  683. file and downloads files mentioned in it.
  684. If ``mem`` is specified, a metalink file is not written to the disk, but is just
  685. kept in memory.
  686. If ``false`` is specified, the ``.metalink`` file is downloaded to
  687. the disk, but is not parsed as a metalink file and its contents are not
  688. downloaded.
  689. Default: ``true``
  690. .. option:: --metalink-base-uri=<URI>
  691. Specify base URI to resolve relative URI in metalink:url and
  692. metalink:metaurl element in a metalink file stored in local disk. If
  693. URI points to a directory, URI must end with ``/``.
  694. .. option:: -M, --metalink-file=<METALINK_FILE>
  695. The file path to ".meta4" and ".metalink" file. Reads input from ``stdin`` when ``-`` is
  696. specified. You are not required to use this option because you can
  697. specify ".metalink" files without :option:`--metalink-file <-M>`.
  698. .. option:: --metalink-language=<LANGUAGE>
  699. The language of the file to download.
  700. .. option:: --metalink-location=<LOCATION>[,...]
  701. The location of the preferred server.
  702. A comma-delimited list of locations is acceptable, for example, ``jp,us``.
  703. .. option:: --metalink-os=<OS>
  704. The operating system of the file to download.
  705. .. option:: --metalink-version=<VERSION>
  706. The version of the file to download.
  707. .. option:: --metalink-preferred-protocol=<PROTO>
  708. Specify preferred protocol.
  709. The possible values are ``http``, ``https``, ``ftp`` and ``none``.
  710. Specify ``none`` to disable this feature.
  711. Default: ``none``
  712. .. option:: --metalink-enable-unique-protocol[=true|false]
  713. If ``true`` is given and several protocols are available for a mirror in a
  714. metalink file, aria2 uses one of them.
  715. Use :option:`--metalink-preferred-protocol` option to specify the preference of
  716. protocol.
  717. Default: ``true``
  718. RPC Options
  719. ~~~~~~~~~~~
  720. .. option:: --enable-rpc[=true|false]
  721. Enable JSON-RPC/XML-RPC server. It is strongly recommended to set
  722. secret authorization token using :option:`--rpc-secret` option. See
  723. also :option:`--rpc-listen-port` option. Default: ``false``
  724. .. option:: --pause[=true|false]
  725. Pause download after added. This option is effective only when
  726. :option:`--enable-rpc=true <--enable-rpc>` is given.
  727. Default: ``false``
  728. .. option:: --pause-metadata[=true|false]
  729. Pause downloads created as a result of metadata download. There are
  730. 3 types of metadata downloads in aria2: (1) downloading .torrent
  731. file. (2) downloading torrent metadata using magnet link. (3)
  732. downloading metalink file. These metadata downloads will generate
  733. downloads using their metadata. This option pauses these subsequent
  734. downloads. This option is effective only when
  735. :option:`--enable-rpc=true <--enable-rpc>` is given.
  736. Default: ``false``
  737. .. option:: --rpc-allow-origin-all[=true|false]
  738. Add Access-Control-Allow-Origin header field with value ``*`` to the
  739. RPC response.
  740. Default: ``false``
  741. .. option:: --rpc-certificate=<FILE>
  742. Use the certificate in FILE for RPC server. The certificate must be
  743. either in PKCS12 (.p12, .pfx) or in PEM format.
  744. PKCS12 files must contain the certificate, a key and optionally a chain
  745. of additional certificates. Only PKCS12 files with a blank import password
  746. can be opened!
  747. When using PEM, you have to specify the private key via :option:`--rpc-private-key`
  748. as well. Use :option:`--rpc-secure` option to enable encryption.
  749. .. note::
  750. *WinTLS* does not support PEM files at the moment. Users have to use PKCS12
  751. files.
  752. .. note::
  753. *AppleTLS* users should use the KeyChain Access utility to first generate a
  754. self-signed SSL-Server certificate, e.g. using the wizard, and get the
  755. SHA-1 fingerprint from the Information dialog corresponding to that new
  756. certificate.
  757. To start aria2c with :option:`--rpc-secure` use
  758. `--rpc-certificate=<SHA-1>`.
  759. Alternatively PKCS12 files are also supported. PEM files, however, are not
  760. supported.
  761. .. option:: --rpc-listen-all[=true|false]
  762. Listen incoming JSON-RPC/XML-RPC requests on all network interfaces. If false
  763. is given, listen only on local loopback interface. Default: ``false``
  764. .. option:: --rpc-listen-port=<PORT>
  765. Specify a port number for JSON-RPC/XML-RPC server to listen to. Possible
  766. Values: ``1024`` -``65535`` Default: ``6800``
  767. .. option:: --rpc-max-request-size=<SIZE>
  768. Set max size of JSON-RPC/XML-RPC request. If aria2 detects the request is
  769. more than SIZE bytes, it drops connection. Default: ``2M``
  770. .. option:: --rpc-passwd=<PASSWD>
  771. Set JSON-RPC/XML-RPC password.
  772. .. Warning::
  773. :option:`--rpc-passwd` option will be deprecated in the future
  774. release. Migrate to :option:`--rpc-secret` option as soon as
  775. possible.
  776. .. option:: --rpc-private-key=<FILE>
  777. Use the private key in FILE for RPC server. The private key must be
  778. decrypted and in PEM format. Use :option:`--rpc-secure` option to
  779. enable encryption. See also :option:`--rpc-certificate` option.
  780. .. option:: --rpc-save-upload-metadata[=true|false]
  781. Save the uploaded torrent or metalink meta data in the directory
  782. specified by :option:`--dir` option. The file name consists of SHA-1
  783. hash hex string of meta data plus extension. For torrent, the
  784. extension is '.torrent'. For metalink, it is '.meta4'. If false is
  785. given to this option, the downloads added by
  786. :func:`aria2.addTorrent` or :func:`aria2.addMetalink` will not be
  787. saved by :option:`--save-session` option. Default: ``false``
  788. .. option:: --rpc-secret=<TOKEN>
  789. Set RPC secret authorization token. Read :ref:`rpc_auth` to know
  790. how this option value is used.
  791. .. option:: --rpc-secure[=true|false]
  792. RPC transport will be encrypted by SSL/TLS. The RPC clients must
  793. use https scheme to access the server. For WebSocket client, use wss
  794. scheme. Use :option:`--rpc-certificate` and
  795. :option:`--rpc-private-key` options to specify the server
  796. certificate and private key.
  797. .. option:: --rpc-user=<USER>
  798. Set JSON-RPC/XML-RPC user.
  799. .. Warning::
  800. :option:`--rpc-user` option will be deprecated in the future
  801. release. Migrate to :option:`--rpc-secret` option as soon as
  802. possible.
  803. Advanced Options
  804. ~~~~~~~~~~~~~~~~
  805. .. option:: --allow-overwrite[=true|false]
  806. Restart download from scratch if the corresponding control file
  807. doesn't exist. See also :option:`--auto-file-renaming` option. Default:
  808. ``false``
  809. .. option:: --allow-piece-length-change[=true|false]
  810. If false is given, aria2 aborts download when a piece length is different
  811. from one in a control file.
  812. If true is given, you can proceed but some download progress will be lost.
  813. Default: ``false``
  814. .. option:: --always-resume[=true|false]
  815. Always resume download. If ``true`` is given, aria2 always tries to
  816. resume download and if resume is not possible, aborts download. If
  817. ``false`` is given, when all given URIs do not support resume or aria2
  818. encounters ``N`` URIs which does not support resume (``N`` is the value
  819. specified using :option:`--max-resume-failure-tries` option), aria2
  820. downloads file from scratch. See :option:`--max-resume-failure-tries`
  821. option. Default: ``true``
  822. .. option:: --async-dns[=true|false]
  823. Enable asynchronous DNS.
  824. Default: ``true``
  825. .. option:: --async-dns-server=<IPADDRESS>[,...]
  826. Comma separated list of DNS server address used in asynchronous DNS
  827. resolver. Usually asynchronous DNS resolver reads DNS server
  828. addresses from ``/etc/resolv.conf``. When this option is used, it uses
  829. DNS servers specified in this option instead of ones in
  830. ``/etc/resolv.conf``. You can specify both IPv4 and IPv6 address. This
  831. option is useful when the system does not have ``/etc/resolv.conf`` and
  832. user does not have the permission to create it.
  833. .. option:: --auto-file-renaming[=true|false]
  834. Rename file name if the same file already exists.
  835. This option works only in HTTP(S)/FTP download.
  836. The new file name has a dot and a number(1..9999) appended after the
  837. name, but before the file extension, if any.
  838. Default: ``true``
  839. .. option:: --auto-save-interval=<SEC>
  840. Save a control file(\*.aria2) every SEC seconds.
  841. If ``0`` is given, a control file is not saved during download. aria2 saves a
  842. control file when it stops regardless of the value.
  843. The possible values are between ``0`` to ``600``.
  844. Default: ``60``
  845. .. option:: --conditional-get[=true|false]
  846. Download file only when the local file is older than remote
  847. file. This function only works with HTTP(S) downloads only. It does
  848. not work if file size is specified in Metalink. It also ignores
  849. Content-Disposition header. If a control file exists, this option
  850. will be ignored. This function uses If-Modified-Since header to get
  851. only newer file conditionally. When getting modification time of
  852. local file, it uses user supplied file name (see :option:`--out <-o>` option) or
  853. file name part in URI if :option:`--out <-o>` is not specified.
  854. To overwrite existing file, :option:`--allow-overwrite` is required.
  855. Default: ``false``
  856. .. option:: --conf-path=<PATH>
  857. Change the configuration file path to PATH.
  858. Default: ``$HOME/.aria2/aria2.conf`` if present, otherwise
  859. ``$XDG_CONFIG_HOME/aria2/aria2.conf``.
  860. .. option:: --console-log-level=<LEVEL>
  861. Set log level to output to console. LEVEL is either ``debug``,
  862. ``info``, ``notice``, ``warn`` or ``error``. Default: ``notice``
  863. .. option:: -D, --daemon[=true|false]
  864. Run as daemon. The current working directory will be changed to ``/``
  865. and standard input, standard output and standard error will be
  866. redirected to ``/dev/null``. Default: ``false``
  867. .. option:: --deferred-input[=true|false]
  868. If ``true`` is given, aria2 does not read all URIs and options from file
  869. specified by :option:`--input-file <-i>` option at startup,
  870. but it reads one by one when it
  871. needs later. This may reduce memory usage if input file contains a
  872. lot of URIs to download. If ``false`` is given, aria2 reads all URIs
  873. and options at startup.
  874. Default: ``false``
  875. .. Warning::
  876. :option:`--deferred-input` option will be disabled when
  877. :option:`--save-session` is used together.
  878. .. option:: --disable-ipv6[=true|false]
  879. Disable IPv6. This is useful if you have to use broken DNS and want
  880. to avoid terribly slow AAAA record lookup. Default: ``false``
  881. .. option:: --disk-cache=<SIZE>
  882. Enable disk cache. If SIZE is ``0``, the disk cache is
  883. disabled. This feature caches the downloaded data in memory, which
  884. grows to at most SIZE bytes. The cache storage is created for aria2
  885. instance and shared by all downloads. The one advantage of the disk
  886. cache is reduce the disk I/O because the data are written in larger
  887. unit and it is reordered by the offset of the file. If hash
  888. checking is involved and the data are cached in memory, we don't
  889. need to read them from the disk. SIZE can include ``K`` or ``M``
  890. (1K = 1024, 1M = 1024K). Default: ``16M``
  891. .. option:: --download-result=<OPT>
  892. This option changes the way ``Download Results`` is formatted. If
  893. OPT is ``default``, print GID, status, average download speed and
  894. path/URI. If multiple files are involved, path/URI of first
  895. requested file is printed and remaining ones are omitted. If OPT is
  896. ``full``, print GID, status, average download speed, percentage of
  897. progress and path/URI. The percentage of progress and path/URI are
  898. printed for each requested file in each row. If OPT is ``hide``,
  899. ``Download Results`` is hidden.
  900. Default: ``default``
  901. .. option:: --dscp=<DSCP>
  902. Set DSCP value in outgoing IP packets of BitTorrent traffic for
  903. QoS. This parameter sets only DSCP bits in TOS field of IP packets,
  904. not the whole field. If you take values from
  905. */usr/include/netinet/ip.h* divide them by 4 (otherwise values would
  906. be incorrect, e.g. your ``CS1`` class would turn into ``CS4``). If
  907. you take commonly used values from RFC, network vendors'
  908. documentation, Wikipedia or any other source, use them as they are.
  909. .. option:: --rlimit-nofile=<NUM>
  910. Set the soft limit of open file descriptors.
  911. This open will only have effect when:
  912. a) The system supports it (posix)
  913. b) The limit does not exceed the hard limit.
  914. c) The specified limit is larger than the current soft limit.
  915. This is equivalent to setting nofile via ulimit,
  916. except that it will never decrease the limit.
  917. This option is only available on systems supporting the rlimit API.
  918. .. option:: --enable-color[=true|false]
  919. Enable color output for a terminal.
  920. Default: ``true``
  921. .. option:: --enable-mmap[=true|false]
  922. Map files into memory. This option may not work if the file space
  923. is not pre-allocated. See :option:`--file-allocation`.
  924. Default: ``false``
  925. .. option:: --event-poll=<POLL>
  926. Specify the method for polling events. The possible values are
  927. ``epoll``, ``kqueue``, ``port``, ``poll`` and ``select``. For each ``epoll``,
  928. ``kqueue``, ``port`` and ``poll``, it is available if system supports it.
  929. ``epoll`` is available on recent Linux. ``kqueue`` is available on
  930. various \*BSD systems including Mac OS X. ``port`` is available on Open
  931. Solaris. The default value may vary depending on the system you use.
  932. .. option:: --file-allocation=<METHOD>
  933. Specify file allocation method.
  934. ``none`` doesn't pre-allocate file space. ``prealloc`` pre-allocates file space
  935. before download begins. This may take some time depending on the size of the
  936. file.
  937. If you are using newer file systems such as ext4
  938. (with extents support), btrfs, xfs or NTFS(MinGW build only), ``falloc`` is
  939. your best choice. It allocates large(few GiB)
  940. files almost instantly. Don't use ``falloc`` with
  941. legacy file systems such as ext3 and FAT32 because it takes
  942. almost same time as ``prealloc`` and it blocks aria2
  943. entirely until allocation finishes. ``falloc`` may
  944. not be available if your system doesn't have
  945. :manpage:`posix_fallocate(3)` function.
  946. ``trunc`` uses :manpage:`ftruncate(2)` system call or
  947. platform-specific counterpart to truncate a file to a specified
  948. length.
  949. Possible Values: ``none``, ``prealloc``, ``trunc``, ``falloc``
  950. Default: ``prealloc``
  951. .. Warning::
  952. Using ``trunc`` seemingly allocates disk space very quickly, but
  953. what it actually does is that it sets file length metadata in
  954. file system, and does not allocate disk space at all. This means
  955. that it does not help avoiding fragmentation.
  956. .. note::
  957. In multi file torrent downloads, the files adjacent forward to the specified files
  958. are also allocated if they share the same piece.
  959. .. option:: --force-save[=true|false]
  960. Save download with :option:`--save-session <--save-session>` option
  961. even if the download is completed or removed. This option also saves
  962. control file in that situations. This may be useful to save
  963. BitTorrent seeding which is recognized as completed state.
  964. Default: ``false``
  965. .. option:: --save-not-found[=true|false]
  966. Save download with :option:`--save-session <--save-session>` option
  967. even if the file was not found on the server. This option also saves
  968. control file in that situations.
  969. Default: ``true``
  970. .. option:: --gid=<GID>
  971. Set GID manually. aria2 identifies each download by the ID called
  972. GID. The GID must be hex string of 16 characters, thus [0-9a-zA-Z]
  973. are allowed and leading zeros must not be stripped. The GID all 0 is
  974. reserved and must not be used. The GID must be unique, otherwise
  975. error is reported and the download is not added. This option is
  976. useful when restoring the sessions saved using
  977. :option:`--save-session <--save-session>` option. If this option is
  978. not used, new GID is generated by aria2.
  979. .. option:: --hash-check-only[=true|false]
  980. If ``true`` is given, after hash check using
  981. :option:`--check-integrity <-V>` option,
  982. abort download whether or not download is complete.
  983. Default: ``false``
  984. .. option:: --human-readable[=true|false]
  985. Print sizes and speed in human readable format (e.g., 1.2Ki, 3.4Mi)
  986. in the console readout. Default: ``true``
  987. .. option:: --interface=<INTERFACE>
  988. Bind sockets to given interface. You can specify interface name, IP
  989. address and host name.
  990. Possible Values: interface, IP address, host name
  991. .. note::
  992. If an interface has multiple addresses, it is highly recommended to
  993. specify IP address explicitly. See also :option:`--disable-ipv6`. If your
  994. system doesn't have :manpage:`getifaddrs(3)`, this option doesn't accept interface
  995. name.
  996. .. option:: --keep-unfinished-download-result[=true|false]
  997. Keep unfinished download results even if doing so exceeds
  998. :option:`--max-download-result`. This is useful if all unfinished
  999. downloads must be saved in session file (see
  1000. :option:`--save-session` option). Please keep in mind that there is
  1001. no upper bound to the number of unfinished download result to keep.
  1002. User should use this option only when they know the total number of
  1003. downloads in advance. Default: ``false``
  1004. .. option:: --max-download-result=<NUM>
  1005. Set maximum number of download result kept in memory. The download
  1006. results are completed/error/removed downloads. The download results
  1007. are stored in FIFO queue and it can store at most NUM download
  1008. results. When queue is full and new download result is created,
  1009. oldest download result is removed from the front of the queue and
  1010. new one is pushed to the back. Setting big number in this option may
  1011. result high memory consumption after thousands of
  1012. downloads. Specifying 0 means no download result is kept. Default:
  1013. ``1000``
  1014. .. option:: --max-mmap-limit=<SIZE>
  1015. Set the maximum file size to enable mmap (see
  1016. :option:`--enable-mmap` option). The file size is determined by the
  1017. sum of all files contained in one download. For example, if a
  1018. download contains 5 files, then file size is the total size of those
  1019. files. If file size is strictly greater than the size specified in
  1020. this option, mmap will be disabled.
  1021. Default: ``9223372036854775807``
  1022. .. option:: --max-resume-failure-tries=<N>
  1023. When used with :option:`--always-resume=false, <--always-resume>` aria2 downloads file from
  1024. scratch when aria2 detects N number of URIs that does not support
  1025. resume. If N is ``0``, aria2 downloads file from scratch when all
  1026. given URIs do not support resume. See :option:`--always-resume` option.
  1027. Default: ``0``
  1028. .. option:: --min-tls-version=<VERSION>
  1029. Specify minimum SSL/TLS version to enable.
  1030. Possible Values: ``SSLv3``, ``TLSv1``, ``TLSv1.1``, ``TLSv1.2``
  1031. Default: ``TLSv1``
  1032. .. option:: --multiple-interface=<INTERFACES>
  1033. Comma separated list of interfaces to bind sockets to. Requests will
  1034. be splited among the interfaces to achieve link aggregation. You can
  1035. specify interface name, IP address and hostname. If
  1036. :option:`--interface` is used, this option will be ignored.
  1037. Possible Values: interface, IP address, hostname
  1038. .. option:: --log-level=<LEVEL>
  1039. Set log level to output.
  1040. LEVEL is either ``debug``, ``info``, ``notice``, ``warn`` or ``error``.
  1041. Default: ``debug``
  1042. .. option:: --on-bt-download-complete=<COMMAND>
  1043. For BitTorrent, a command specified in :option:`--on-download-complete` is
  1044. called after download completed and seeding is over. On the other
  1045. hand, this option set the command to be executed after download
  1046. completed but before seeding.
  1047. See `Event Hook`_ for more details about COMMAND.
  1048. Possible Values: ``/path/to/command``
  1049. .. option:: --on-download-complete=<COMMAND>
  1050. Set the command to be executed after download completed. See
  1051. See `Event Hook`_ for more details about COMMAND.
  1052. See also :option:`--on-download-stop` option.
  1053. Possible Values: ``/path/to/command``
  1054. .. option:: --on-download-error=<COMMAND>
  1055. Set the command to be executed after download aborted due to error.
  1056. See `Event Hook`_ for more details about COMMAND.
  1057. See also :option:`--on-download-stop` option. Possible Values:
  1058. ``/path/to/command``
  1059. .. option:: --on-download-pause=<COMMAND>
  1060. Set the command to be executed after download was paused.
  1061. See `Event Hook`_ for more details about COMMAND.
  1062. Possible Values: ``/path/to/command``
  1063. .. option:: --on-download-start=<COMMAND>
  1064. Set the command to be executed after download got started.
  1065. See `Event Hook`_ for more details about COMMAND.
  1066. Possible Values: ``/path/to/command``
  1067. .. option:: --on-download-stop=<COMMAND>
  1068. Set the command to be executed after download stopped. You can override
  1069. the command to be executed for particular download result using
  1070. :option:`--on-download-complete` and :option:`--on-download-error`. If they are
  1071. specified, command specified in this option is not executed.
  1072. See `Event Hook`_ for more details about COMMAND.
  1073. Possible Values: ``/path/to/command``
  1074. .. option:: --optimize-concurrent-downloads[=true|false|<A>:<B>]
  1075. Optimizes the number of concurrent downloads according to the
  1076. bandwidth available. aria2 uses the download speed observed in the
  1077. previous downloads to adapt the number of downloads launched in
  1078. parallel according to the rule N = A + B Log10(speed in Mbps). The
  1079. coefficients A and B can be customized in the option arguments with
  1080. A and B separated by a colon. The default values (A=5, B=25) lead to
  1081. using typically 5 parallel downloads on 1Mbps networks and above 50
  1082. on 100Mbps networks. The number of parallel downloads remains
  1083. constrained under the maximum defined by the
  1084. :option:`--max-concurrent-downloads` parameter.
  1085. Default: ``false``
  1086. .. option:: --piece-length=<LENGTH>
  1087. Set a piece length for HTTP/FTP downloads. This is the boundary when
  1088. aria2 splits a file. All splits occur at multiple of this
  1089. length. This option will be ignored in BitTorrent downloads. It
  1090. will be also ignored if Metalink file contains piece hashes.
  1091. Default: ``1M``
  1092. .. note::
  1093. The possible use case of :option:`--piece-length`
  1094. option is change the request range in one HTTP pipelined request.
  1095. To enable HTTP pipelining use
  1096. :option:`--enable-http-pipelining`.
  1097. .. option:: --show-console-readout[=true|false]
  1098. Show console readout. Default: ``true``
  1099. .. option:: --stderr[=true|false]
  1100. Redirect all console output that would be otherwise printed in
  1101. stdout to stderr. Default: ``false``
  1102. .. option:: --summary-interval=<SEC>
  1103. Set interval in seconds to output download progress summary.
  1104. Setting ``0`` suppresses the output.
  1105. Default: ``60``
  1106. .. option:: -Z, --force-sequential[=true|false]
  1107. Fetch URIs in the command-line sequentially and download each URI in a
  1108. separate session, like the usual command-line download utilities.
  1109. Default: ``false``
  1110. .. option:: --max-overall-download-limit=<SPEED>
  1111. Set max overall download speed in bytes/sec. ``0`` means
  1112. unrestricted. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K). To
  1113. limit the download speed per download, use :option:`--max-download-limit`
  1114. option. Default: ``0``
  1115. .. option:: --max-download-limit=<SPEED>
  1116. Set max download speed per each download in bytes/sec. ``0`` means
  1117. unrestricted. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K). To
  1118. limit the overall download speed, use :option:`--max-overall-download-limit`
  1119. option. Default: ``0``
  1120. .. option:: --no-conf[=true|false]
  1121. Disable loading aria2.conf file.
  1122. .. option:: --no-file-allocation-limit=<SIZE>
  1123. No file allocation is made for files whose size is smaller than SIZE.
  1124. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  1125. Default: ``5M``
  1126. .. option:: -P, --parameterized-uri[=true|false]
  1127. Enable parameterized URI support.
  1128. You can specify set of parts: ``http://{sv1,sv2,sv3}/foo.iso``.
  1129. Also you can specify numeric sequences with step counter:
  1130. ``http://host/image[000-100:2].img``.
  1131. A step counter can be omitted.
  1132. If all URIs do not point to the same file, such as the second example above,
  1133. -Z option is required.
  1134. Default: ``false``
  1135. .. option:: -q, --quiet[=true|false]
  1136. Make aria2 quiet (no console output).
  1137. Default: ``false``
  1138. .. option:: --realtime-chunk-checksum[=true|false]
  1139. Validate chunk of data by calculating checksum while downloading a file if
  1140. chunk checksums are provided.
  1141. Default: ``true``
  1142. .. option:: --remove-control-file[=true|false]
  1143. Remove control file before download. Using with
  1144. :option:`--allow-overwrite=true, <--allow-overwrite>` download always starts from
  1145. scratch. This will be useful for users behind proxy server which
  1146. disables resume.
  1147. .. option:: --save-session=<FILE>
  1148. Save error/unfinished downloads to FILE on exit. You can pass this
  1149. output file to aria2c with :option:`--input-file <-i>` option on
  1150. restart. If you like the output to be gzipped append a .gz extension to
  1151. the file name.
  1152. Please note that downloads added by
  1153. :func:`aria2.addTorrent` and :func:`aria2.addMetalink` RPC method
  1154. and whose meta data could not be saved as a file are not saved.
  1155. Downloads removed using :func:`aria2.remove` and
  1156. :func:`aria2.forceRemove` will not be saved. GID is also saved with
  1157. :option:`gid <--gid>`, but there are some restrictions, see below.
  1158. .. note::
  1159. Normally, GID of the download itself is saved. But some downloads
  1160. use meta data (e.g., BitTorrent and Metalink). In this case, there
  1161. are some restrictions.
  1162. magnet URI, and followed by torrent download
  1163. GID of BitTorrent meta data download is saved.
  1164. URI to torrent file, and followed by torrent download
  1165. GID of torrent file download is saved.
  1166. URI to metalink file, and followed by file downloads described in metalink file
  1167. GID of metalink file download is saved.
  1168. local torrent file
  1169. GID of torrent download is saved.
  1170. local metalink file
  1171. Any meaningful GID is not saved.
  1172. .. option:: --save-session-interval=<SEC>
  1173. Save error/unfinished downloads to a file specified by
  1174. :option:`--save-session` option every SEC seconds. If ``0`` is
  1175. given, file will be saved only when aria2 exits. Default: ``0``
  1176. .. option:: --socket-recv-buffer-size=<SIZE>
  1177. Set the maximum socket receive buffer in bytes. Specifying ``0``
  1178. will disable this option. This value will be set to socket file
  1179. descriptor using ``SO_RCVBUF`` socket option with ``setsockopt()``
  1180. call. Default: ``0``
  1181. .. option:: --stop=<SEC>
  1182. Stop application after SEC seconds has passed.
  1183. If ``0`` is given, this feature is disabled.
  1184. Default: ``0``
  1185. .. option:: --stop-with-process=<PID>
  1186. Stop application when process PID is not running. This is useful if
  1187. aria2 process is forked from a parent process. The parent process
  1188. can fork aria2 with its own pid and when parent process exits for
  1189. some reason, aria2 can detect it and shutdown itself.
  1190. .. option:: --truncate-console-readout[=true|false]
  1191. Truncate console readout to fit in a single line.
  1192. Default: ``true``
  1193. .. option:: -v, --version
  1194. Print the version number, copyright and the configuration information and
  1195. exit.
  1196. Notes for Options
  1197. ~~~~~~~~~~~~~~~~~
  1198. Optional arguments
  1199. ^^^^^^^^^^^^^^^^^^
  1200. The options that have its argument surrounded by square brackets([])
  1201. take an optional argument. Usually omitting the argument is evaluated to ``true``.
  1202. If you use short form of these options(such as ``-V``) and give
  1203. an argument, then the option name and its argument should be concatenated(e.g.
  1204. ``-Vfalse``). If any spaces are inserted between the option name and the argument,
  1205. the argument will be treated as URI and usually this is not what you expect.
  1206. Units (K and M)
  1207. ^^^^^^^^^^^^^^^
  1208. Some options takes ``K`` and ``M`` to conveniently represent 1024 and
  1209. 1048576 respectively. aria2 detects these characters in
  1210. case-insensitive way. In other words, ``k`` and ``m`` can be used as
  1211. well as ``K`` and ``M`` respectively.
  1212. URI, MAGNET, TORRENT_FILE, METALINK_FILE
  1213. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1214. You can specify multiple URIs in command-line. Unless you specify
  1215. :option:`--force-sequential <-Z>` option, all URIs must point to the same file or downloading will
  1216. fail.
  1217. You can specify arbitrary number of BitTorrent Magnet URI. Please note
  1218. that they are always treated as a separate download. Both hex encoded
  1219. 40 characters Info Hash and Base32 encoded 32 characters Info Hash are
  1220. supported. The multiple ``tr`` parameters are supported. Because
  1221. BitTorrent Magnet URI is likely to contain ``&`` character, it is highly
  1222. recommended to always quote URI with single(``'``) or double(``"``) quotation.
  1223. It is strongly recommended to enable DHT especially when ``tr``
  1224. parameter is missing. See http://www.bittorrent.org/beps/bep_0009.html
  1225. for more details about BitTorrent Magnet URI.
  1226. You can also specify arbitrary number of torrent files and Metalink
  1227. documents stored on a local drive. Please note that they are always
  1228. treated as a separate download. Both Metalink4 and Metalink version
  1229. 3.0 are supported.
  1230. You can specify both torrent file with -T option and URIs. By doing
  1231. this, you can download a file from both torrent swarm and
  1232. HTTP(S)/FTP/SFTP server at the same time, while the data from
  1233. HTTP(S)/FTP/SFTP are uploaded to the torrent swarm. For single file
  1234. torrents, URI can be a complete URI pointing to the resource or if URI
  1235. ends with /, name in torrent file in torrent is added. For multi-file
  1236. torrents, name and path are added to form a URI for each file.
  1237. .. note::
  1238. Make sure that URI is quoted with single(``'``) or double(``"``) quotation if it
  1239. contains ``&`` or any characters that have special meaning in shell.
  1240. Resuming Download
  1241. ~~~~~~~~~~~~~~~~~
  1242. Usually, you can resume transfer by just issuing same command (aria2c
  1243. URI) if the previous transfer is made by aria2.
  1244. If the previous transfer is made by a browser or wget like sequential
  1245. download manager, then use :option:`--continue <-c>` option to continue the
  1246. transfer.
  1247. Event Hook
  1248. ~~~~~~~~~~
  1249. aria2 provides options to specify arbitrary command after specific event
  1250. occurred. Currently following options are available:
  1251. :option:`--on-bt-download-complete`,
  1252. :option:`--on-download-pause`,
  1253. :option:`--on-download-complete`.
  1254. :option:`--on-download-start`,
  1255. :option:`--on-download-error`,
  1256. :option:`--on-download-stop`.
  1257. aria2 passes 3 arguments to specified command when it is executed.
  1258. These arguments are: GID, the number of files and file path. For
  1259. HTTP, FTP, and SFTP downloads, usually the number of files is 1.
  1260. BitTorrent download can contain multiple files. If number of files is
  1261. more than one, file path is first one. In other words, this is the
  1262. value of path key of first struct whose selected key is true in the
  1263. response of :func:`aria2.getFiles` RPC method. If you want to get all
  1264. file paths, consider to use JSON-RPC/XML-RPC. Please note that file
  1265. path may change during download in HTTP because of redirection or
  1266. Content-Disposition header.
  1267. Let's see an example of how arguments are passed to command:
  1268. .. code-block:: console
  1269. $ cat hook.sh
  1270. #!/bin/sh
  1271. echo "Called with [$1] [$2] [$3]"
  1272. $ aria2c --on-download-complete hook.sh http://example.org/file.iso
  1273. Called with [1] [1] [/path/to/file.iso]
  1274. .. _exit-status:
  1275. EXIT STATUS
  1276. -----------
  1277. Because aria2 can handle multiple downloads at once, it encounters
  1278. lots of errors in a session. aria2 returns the following exit status
  1279. based on the last error encountered.
  1280. 0
  1281. If all downloads were successful.
  1282. 1
  1283. If an unknown error occurred.
  1284. 2
  1285. If time out occurred.
  1286. 3
  1287. If a resource was not found.
  1288. 4
  1289. If aria2 saw the specified number of "resource not found" error.
  1290. See :option:`--max-file-not-found` option.
  1291. 5
  1292. If a download aborted because download speed was too slow.
  1293. See :option:`--lowest-speed-limit` option.
  1294. 6
  1295. If network problem occurred.
  1296. 7
  1297. If there were unfinished downloads. This error is only reported if
  1298. all finished downloads were successful and there were unfinished
  1299. downloads in a queue when aria2 exited by pressing :kbd:`Ctrl-C` by an user
  1300. or sending TERM or INT signal.
  1301. 8
  1302. If remote server did not support resume when resume was required to
  1303. complete download.
  1304. 9
  1305. If there was not enough disk space available.
  1306. 10
  1307. If piece length was different from one in .aria2 control file. See
  1308. :option:`--allow-piece-length-change` option.
  1309. 11
  1310. If aria2 was downloading same file at that moment.
  1311. 12
  1312. If aria2 was downloading same info hash torrent at that moment.
  1313. 13
  1314. If file already existed. See :option:`--allow-overwrite` option.
  1315. 14
  1316. If renaming file failed. See :option:`--auto-file-renaming` option.
  1317. 15
  1318. If aria2 could not open existing file.
  1319. 16
  1320. If aria2 could not create new file or truncate existing file.
  1321. 17
  1322. If file I/O error occurred.
  1323. 18
  1324. If aria2 could not create directory.
  1325. 19
  1326. If name resolution failed.
  1327. 20
  1328. If aria2 could not parse Metalink document.
  1329. 21
  1330. If FTP command failed.
  1331. 22
  1332. If HTTP response header was bad or unexpected.
  1333. 23
  1334. If too many redirects occurred.
  1335. 24
  1336. If HTTP authorization failed.
  1337. 25
  1338. If aria2 could not parse bencoded file (usually ".torrent" file).
  1339. 26
  1340. If ".torrent" file was corrupted or missing information that aria2 needed.
  1341. 27
  1342. If Magnet URI was bad.
  1343. 28
  1344. If bad/unrecognized option was given or unexpected option argument
  1345. was given.
  1346. 29
  1347. If the remote server was unable to handle the request due to a
  1348. temporary overloading or maintenance.
  1349. 30
  1350. If aria2 could not parse JSON-RPC request.
  1351. 31
  1352. Reserved. Not used.
  1353. 32
  1354. If checksum validation failed.
  1355. .. note::
  1356. An error occurred in a finished download will not be reported
  1357. as exit status.
  1358. ENVIRONMENT
  1359. -----------
  1360. aria2 recognizes the following environment variables.
  1361. ``http_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1362. Specify proxy server for use in HTTP.
  1363. Overrides http-proxy value in configuration file.
  1364. The command-line option :option:`--http-proxy` overrides this value.
  1365. ``https_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1366. Specify proxy server for use in HTTPS.
  1367. Overrides https-proxy value in configuration file.
  1368. The command-line option :option:`--https-proxy` overrides this value.
  1369. ``ftp_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1370. Specify proxy server for use in FTP.
  1371. Overrides ftp-proxy value in configuration file.
  1372. The command-line option :option:`--ftp-proxy` overrides this value.
  1373. ``all_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1374. Specify proxy server for use if no protocol-specific proxy is specified.
  1375. Overrides all-proxy value in configuration file.
  1376. The command-line option :option:`--all-proxy` overrides this value.
  1377. .. note::
  1378. Although aria2 accepts ``ftp://`` and ``https://`` scheme in proxy URI, it
  1379. simply assumes that ``http://`` is specified and does not change its
  1380. behavior based on the specified scheme.
  1381. ``no_proxy [DOMAIN,...]``
  1382. Specify a comma-separated list of host names, domains and network addresses
  1383. with or without a subnet mask where no proxy should be used. Overrides the
  1384. `no-proxy` value in configuration file. The command-line option
  1385. :option:`--no-proxy` overrides this value.
  1386. FILES
  1387. -----
  1388. aria2.conf
  1389. ~~~~~~~~~~
  1390. By default, aria2 checks whether the legacy path
  1391. ``$HOME/.aria2/aria2.conf`` is present, otherwise it parses
  1392. ``$XDG_CONFIG_HOME/aria2/aria2.conf`` as its configuration file. You
  1393. can specify the path to configuration file using :option:`--conf-path`
  1394. option. If you don't want to use the configuration file, use
  1395. :option:`--no-conf` option.
  1396. The configuration file is a text file and has 1 option per each
  1397. line. In each line, you can specify name-value pair in the format:
  1398. ``NAME=VALUE``, where name is the long command-line option name without
  1399. ``--`` prefix. You can use same syntax for the command-line option. The
  1400. lines beginning ``#`` are treated as comments::
  1401. # sample configuration file for aria2c
  1402. listen-port=60000
  1403. dht-listen-port=60000
  1404. seed-ratio=1.0
  1405. max-upload-limit=50K
  1406. ftp-pasv=true
  1407. .. note::
  1408. The confidential information such as user/password might be included
  1409. in the configuration file. It is recommended to change file mode
  1410. bits of the configuration file (e.g., ``chmod 600 aria2.conf``), so
  1411. that other user cannot see the contents of the file.
  1412. dht.dat
  1413. ~~~~~~~~
  1414. Unless the legacy file paths ``$HOME/.aria2/dht.dat`` and
  1415. ``$HOME/.aria2/dht6.dat`` are pointing to existing files, the routing
  1416. table of IPv4 DHT is saved to the path
  1417. ``$XDG_CACHE_HOME/aria2/dht.dat`` and the routing table of IPv6 DHT is
  1418. saved to the path ``$XDG_CACHE_HOME/aria2/dht6.dat``.
  1419. Netrc
  1420. ~~~~~
  1421. Netrc support is enabled by default for HTTP(S)/FTP/SFTP. To disable
  1422. netrc support, specify :option:`--no-netrc <-n>` option. Your .netrc
  1423. file should have correct permissions(600).
  1424. If machine name starts ``.``, aria2 performs domain-match instead of
  1425. exact match. This is an extension of aria2. For example of domain
  1426. match, imagine the following .netrc entry::
  1427. machine .example.org login myid password mypasswd
  1428. ``aria2.example.org`` domain-matches ``.example.org`` and uses ``myid`` and
  1429. ``mypasswd``.
  1430. Some domain-match example follow: ``example.net`` does not domain-match
  1431. ``.example.org``. ``example.org`` does not domain-match ``.example.org``
  1432. because of preceding ``.``. If you want to match ``example.org``, specify
  1433. ``example.org``.
  1434. Control File
  1435. ~~~~~~~~~~~~
  1436. aria2 uses a control file to track the progress of a download. A
  1437. control file is placed in the same directory as the downloading file
  1438. and its file name is the file name of downloading file with ``.aria2``
  1439. appended. For example, if you are downloading file.zip, then the
  1440. control file should be file.zip.aria2. (There is a exception for this
  1441. naming convention. If you are downloading a multi torrent, its
  1442. control file is the "top directory" name of the torrent with ``.aria2``
  1443. appended. The "top directory" name is a value of "name" key in "info"
  1444. directory in a torrent file.)
  1445. Usually a control file is deleted once download completed. If aria2
  1446. decides that download cannot be resumed(for example, when downloading
  1447. a file from a HTTP server which doesn't support resume), a control
  1448. file is not created.
  1449. Normally if you lose a control file, you cannot resume download. But
  1450. if you have a torrent or metalink with chunk checksums for the file,
  1451. you can resume the download without a control file by giving -V option
  1452. to aria2c in command-line.
  1453. .. _input-file:
  1454. Input File
  1455. ~~~~~~~~~~
  1456. The input file can contain a list of URIs for aria2 to download. You
  1457. can specify multiple URIs for a single entity: separate URIs on a
  1458. single line using the TAB character.
  1459. Each line is treated as if it is provided in command-line argument.
  1460. Therefore they are affected by :option:`--force-sequential <-Z>` and :option:`--parameterized-uri <-P>` options.
  1461. Since URIs in the input file are directly read by aria2, they must not
  1462. be quoted with single(``'``) or double(``"``) quotation.
  1463. Lines starting with ``#`` are treated as comments and skipped.
  1464. Additionally, the following options can be specified after each line
  1465. of URIs. These optional lines must start with white space(s).
  1466. .. hlist::
  1467. :columns: 3
  1468. * :option:`all-proxy <--all-proxy>`
  1469. * :option:`all-proxy-passwd <--all-proxy-passwd>`
  1470. * :option:`all-proxy-user <--all-proxy-user>`
  1471. * :option:`allow-overwrite <--allow-overwrite>`
  1472. * :option:`allow-piece-length-change <--allow-piece-length-change>`
  1473. * :option:`always-resume <--always-resume>`
  1474. * :option:`async-dns <--async-dns>`
  1475. * :option:`auto-file-renaming <--auto-file-renaming>`
  1476. * :option:`bt-enable-hook-after-hash-check <--bt-enable-hook-after-hash-check>`
  1477. * :option:`bt-enable-lpd <--bt-enable-lpd>`
  1478. * :option:`bt-exclude-tracker <--bt-exclude-tracker>`
  1479. * :option:`bt-external-ip <--bt-external-ip>`
  1480. * :option:`bt-force-encryption <--bt-force-encryption>`
  1481. * :option:`bt-hash-check-seed <--bt-hash-check-seed>`
  1482. * :option:`bt-max-peers <--bt-max-peers>`
  1483. * :option:`bt-metadata-only <--bt-metadata-only>`
  1484. * :option:`bt-min-crypto-level <--bt-min-crypto-level>`
  1485. * :option:`bt-prioritize-piece <--bt-prioritize-piece>`
  1486. * :option:`bt-remove-unselected-file <--bt-remove-unselected-file>`
  1487. * :option:`bt-request-peer-speed-limit <--bt-request-peer-speed-limit>`
  1488. * :option:`bt-require-crypto <--bt-require-crypto>`
  1489. * :option:`bt-save-metadata <--bt-save-metadata>`
  1490. * :option:`bt-seed-unverified <--bt-seed-unverified>`
  1491. * :option:`bt-stop-timeout <--bt-stop-timeout>`
  1492. * :option:`bt-tracker <--bt-tracker>`
  1493. * :option:`bt-tracker-connect-timeout <--bt-tracker-connect-timeout>`
  1494. * :option:`bt-tracker-interval <--bt-tracker-interval>`
  1495. * :option:`bt-tracker-timeout <--bt-tracker-timeout>`
  1496. * :option:`check-integrity <-V>`
  1497. * :option:`checksum <--checksum>`
  1498. * :option:`conditional-get <--conditional-get>`
  1499. * :option:`connect-timeout <--connect-timeout>`
  1500. * :option:`continue <-c>`
  1501. * :option:`dir <-d>`
  1502. * :option:`dry-run <--dry-run>`
  1503. * :option:`enable-http-keep-alive <--enable-http-keep-alive>`
  1504. * :option:`enable-http-pipelining <--enable-http-pipelining>`
  1505. * :option:`enable-mmap <--enable-mmap>`
  1506. * :option:`enable-peer-exchange <--enable-peer-exchange>`
  1507. * :option:`file-allocation <--file-allocation>`
  1508. * :option:`follow-metalink <--follow-metalink>`
  1509. * :option:`follow-torrent <--follow-torrent>`
  1510. * :option:`force-save <--force-save>`
  1511. * :option:`ftp-passwd <--ftp-passwd>`
  1512. * :option:`ftp-pasv <-p>`
  1513. * :option:`ftp-proxy <--ftp-proxy>`
  1514. * :option:`ftp-proxy-passwd <--ftp-proxy-passwd>`
  1515. * :option:`ftp-proxy-user <--ftp-proxy-user>`
  1516. * :option:`ftp-reuse-connection <--ftp-reuse-connection>`
  1517. * :option:`ftp-type <--ftp-type>`
  1518. * :option:`ftp-user <--ftp-user>`
  1519. * :option:`gid <--gid>`
  1520. * :option:`hash-check-only <--hash-check-only>`
  1521. * :option:`header <--header>`
  1522. * :option:`http-accept-gzip <--http-accept-gzip>`
  1523. * :option:`http-auth-challenge <--http-auth-challenge>`
  1524. * :option:`http-no-cache <--http-no-cache>`
  1525. * :option:`http-passwd <--http-passwd>`
  1526. * :option:`http-proxy <--http-proxy>`
  1527. * :option:`http-proxy-passwd <--http-proxy-passwd>`
  1528. * :option:`http-proxy-user <--http-proxy-user>`
  1529. * :option:`http-user <--http-user>`
  1530. * :option:`https-proxy <--https-proxy>`
  1531. * :option:`https-proxy-passwd <--https-proxy-passwd>`
  1532. * :option:`https-proxy-user <--https-proxy-user>`
  1533. * :option:`index-out <-O>`
  1534. * :option:`lowest-speed-limit <--lowest-speed-limit>`
  1535. * :option:`max-connection-per-server <-x>`
  1536. * :option:`max-download-limit <--max-download-limit>`
  1537. * :option:`max-file-not-found <--max-file-not-found>`
  1538. * :option:`max-mmap-limit <--max-mmap-limit>`
  1539. * :option:`max-resume-failure-tries <--max-resume-failure-tries>`
  1540. * :option:`max-tries <-m>`
  1541. * :option:`max-upload-limit <-u>`
  1542. * :option:`metalink-base-uri <--metalink-base-uri>`
  1543. * :option:`metalink-enable-unique-protocol <--metalink-enable-unique-protocol>`
  1544. * :option:`metalink-language <--metalink-language>`
  1545. * :option:`metalink-location <--metalink-location>`
  1546. * :option:`metalink-os <--metalink-os>`
  1547. * :option:`metalink-preferred-protocol <--metalink-preferred-protocol>`
  1548. * :option:`metalink-version <--metalink-version>`
  1549. * :option:`min-split-size <-k>`
  1550. * :option:`no-file-allocation-limit <--no-file-allocation-limit>`
  1551. * :option:`no-netrc <-n>`
  1552. * :option:`no-proxy <--no-proxy>`
  1553. * :option:`out <-o>`
  1554. * :option:`parameterized-uri <-P>`
  1555. * :option:`pause <--pause>`
  1556. * :option:`pause-metadata <--pause-metadata>`
  1557. * :option:`piece-length <--piece-length>`
  1558. * :option:`proxy-method <--proxy-method>`
  1559. * :option:`realtime-chunk-checksum <--realtime-chunk-checksum>`
  1560. * :option:`referer <--referer>`
  1561. * :option:`remote-time <-R>`
  1562. * :option:`remove-control-file <--remove-control-file>`
  1563. * :option:`retry-wait <--retry-wait>`
  1564. * :option:`reuse-uri <--reuse-uri>`
  1565. * :option:`rpc-save-upload-metadata <--rpc-save-upload-metadata>`
  1566. * :option:`seed-ratio <--seed-ratio>`
  1567. * :option:`seed-time <--seed-time>`
  1568. * :option:`select-file <--select-file>`
  1569. * :option:`split <-s>`
  1570. * :option:`ssh-host-key-md <--ssh-host-key-md>`
  1571. * :option:`stream-piece-selector <--stream-piece-selector>`
  1572. * :option:`timeout <-t>`
  1573. * :option:`uri-selector <--uri-selector>`
  1574. * :option:`use-head <--use-head>`
  1575. * :option:`user-agent <-U>`
  1576. These options have exactly same meaning of the ones in the
  1577. command-line options, but it just applies to the URIs it belongs to.
  1578. Please note that for options in input file ``--`` prefix must be
  1579. stripped.
  1580. For example, the content of uri.txt is::
  1581. http://server/file.iso http://mirror/file.iso
  1582. dir=/iso_images
  1583. out=file.img
  1584. http://foo/bar
  1585. If aria2 is executed with ``-i uri.txt -d /tmp`` options, then
  1586. ``file.iso`` is saved as ``/iso_images/file.img`` and it is downloaded
  1587. from ``http://server/file.iso`` and ``http://mirror/file.iso``. The file
  1588. ``bar`` is downloaded from ``http://foo/bar`` and saved as ``/tmp/bar``.
  1589. In some cases, :option:`out <-o>` parameter has no effect.
  1590. See note of :option:`--out <-o>`
  1591. option for the restrictions.
  1592. Server Performance Profile
  1593. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  1594. This section describes the format of server performance profile. The
  1595. file is plain text and each line has several ``NAME=VALUE`` pair,
  1596. delimited by comma. Currently following NAMEs are recognized:
  1597. ``host``
  1598. Host name of the server. Required.
  1599. ``protocol``
  1600. Protocol for this profile, such as ftp, http. Required.
  1601. ``dl_speed``
  1602. The average download speed observed in the previous download in
  1603. bytes per sec. Required.
  1604. ``sc_avg_speed``
  1605. The average download speed observed in the previous download in
  1606. bytes per sec. This value is only updated if the download is done in
  1607. single connection environment and only used by
  1608. AdaptiveURISelector. Optional.
  1609. ``mc_avg_speed``
  1610. The average download speed observed in the previous download in
  1611. bytes per sec. This value is only updated if the download is done in
  1612. multi connection environment and only used by
  1613. AdaptiveURISelector. Optional.
  1614. ``counter``
  1615. How many times the server is used. Currently this value is only used
  1616. by AdaptiveURISelector. Optional.
  1617. ``last_updated``
  1618. Last contact time in GMT with this server, specified in the seconds
  1619. since the Epoch(00:00:00 on January 1, 1970, UTC). Required.
  1620. ``status``
  1621. ERROR is set when server cannot be reached or out-of-service or
  1622. timeout occurred. Otherwise, OK is set.
  1623. Those fields must exist in one line. The order of the fields is not
  1624. significant. You can put pairs other than the above; they are simply
  1625. ignored.
  1626. An example follows::
  1627. host=localhost, protocol=http, dl_speed=32000, last_updated=1222491640, status=OK
  1628. host=localhost, protocol=ftp, dl_speed=0, last_updated=1222491632, status=ERROR
  1629. RPC INTERFACE
  1630. -------------
  1631. aria2 provides JSON-RPC over HTTP and XML-RPC over HTTP interfaces that offer
  1632. basically the same functionality. aria2 also provides JSON-RPC
  1633. over WebSocket. JSON-RPC over WebSocket uses the same method signatures
  1634. and response format as JSON-RPC over HTTP, but additionally provides
  1635. server-initiated notifications. See `JSON-RPC over WebSocket`_ section for more
  1636. information.
  1637. The request path of the JSON-RPC interface (for both over HTTP and over
  1638. WebSocket) is ``/jsonrpc``. The request path of the XML-RPC interface is
  1639. ``/rpc``.
  1640. The WebSocket URI for JSON-RPC over WebSocket is
  1641. ``ws://HOST:PORT/jsonrpc``. If you enabled SSL/TLS encryption, use
  1642. ``wss://HOST:PORT/jsonrpc`` instead.
  1643. The implemented JSON-RPC is based on JSON-RPC 2.0
  1644. <http://jsonrpc.org/specification>, and
  1645. supports HTTP POST and GET (JSONP). The WebSocket transport is
  1646. an aria2 extension.
  1647. The JSON-RPC interface does not support notifications over HTTP, but the
  1648. RPC server will send notifications over WebSocket. It also does not
  1649. support floating point numbers. The character encoding must be UTF-8.
  1650. When reading the following documentation for JSON-RPC, interpret structs as JSON
  1651. objects.
  1652. Terminology
  1653. ~~~~~~~~~~~
  1654. GID
  1655. The GID (or gid) is a key to manage each download. Each download will be
  1656. assigned a unique GID. The GID is stored as 64-bit binary value in aria2.
  1657. For RPC access, it is represented as a hex string of 16 characters (e.g.,
  1658. ``2089b05ecca3d829``). Normally, aria2 generates this GID for each
  1659. download, but the user can specify GIDs manually using the :option:`--gid
  1660. <--gid>` option. When querying downloads by GID, you can specify only the
  1661. prefix of a GID as long as it is unique among others.
  1662. .. _rpc_auth:
  1663. RPC authorization secret token
  1664. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1665. As of 1.18.4, in addition to HTTP basic authorization, aria2 provides
  1666. RPC method-level authorization. In a future release, HTTP basic
  1667. authorization will be removed and RPC method-level authorization will
  1668. become mandatory.
  1669. To use RPC method-level authorization, the user has to specify an RPC secret
  1670. authorization token using the :option:`--rpc-secret` option. For each RPC
  1671. method call, the caller has to include the token prefixed with
  1672. ``token:``. Even when the :option:`--rpc-secret` option is not used, if the
  1673. first parameter in the RPC method is a string and starts with ``token:``, it
  1674. will removed from the parameter list before the request is being processed.
  1675. For example, if the RPC secret authorization token is ``$$secret$$``,
  1676. calling `aria2.addUri` RPC method would have to look like this::
  1677. aria2.addUri("token:$$secret$$", ["http://example.org/file"])
  1678. The `system.multicall` RPC method is treated specially. Since the XML-RPC
  1679. specification only allows a single array as a parameter for this method, we
  1680. don't specify the token in the call. Instead, each nested method call has
  1681. to provide the token as the first parameter as described above.
  1682. .. note::
  1683. The secret token validation in aria2 is designed to take at least a certain
  1684. amount of time to mitigate brute-force/dictionary attacks against the RPC
  1685. interface. Therefore it is recommended to prefer Batch or `system.multicall`
  1686. requests when appropriate.
  1687. `system.listMethods` and `system.listNotifications` can be executed without token. Since they just
  1688. return available methods/notifications, they do not alter anything, they're safe without secret token.
  1689. Methods
  1690. ~~~~~~~
  1691. All code examples are compatible with the Python 2.7 interpreter.
  1692. For information on the *secret* parameter, see :ref:`rpc_auth`.
  1693. .. function:: aria2.addUri([secret], uris[, options[, position]])
  1694. This method adds a new download. *uris* is an array of
  1695. HTTP/FTP/SFTP/BitTorrent URIs (strings) pointing to the same
  1696. resource. If you mix URIs pointing to different resources, then the
  1697. download may fail or be corrupted without aria2 complaining. When
  1698. adding BitTorrent Magnet URIs, *uris* must have only one element and
  1699. it should be BitTorrent Magnet URI. *options* is a struct and its
  1700. members are pairs of option name and value. See :ref:`rpc_options`
  1701. below for more details. If *position* is given, it must be an
  1702. integer starting from 0. The new download will be inserted at
  1703. *position* in the waiting queue. If *position* is omitted or
  1704. *position* is larger than the current size of the queue, the new
  1705. download is appended to the end of the queue. This method returns
  1706. the GID of the newly registered download.
  1707. **JSON-RPC Example**
  1708. The following example adds ``http://example.org/file``::
  1709. >>> import urllib2, json
  1710. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1711. ... 'method':'aria2.addUri',
  1712. ... 'params':[['http://example.org/file']]})
  1713. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1714. >>> c.read()
  1715. '{"id":"qwer","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1716. **XML-RPC Example**
  1717. The following example adds ``http://example.org/file``::
  1718. >>> import xmlrpclib
  1719. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1720. >>> s.aria2.addUri(['http://example.org/file'])
  1721. '2089b05ecca3d829'
  1722. The following example adds a new download with two sources and some options::
  1723. >>> s.aria2.addUri(['http://example.org/file', 'http://mirror/file'],
  1724. dict(dir="/tmp"))
  1725. 'd2703803b52216d1'
  1726. The following example adds a download and inserts it to the front of the
  1727. queue::
  1728. >>> s.aria2.addUri(['http://example.org/file'], {}, 0)
  1729. 'ca3d829cee549a4d'
  1730. .. function:: aria2.addTorrent([secret], torrent[, uris[, options[, position]]])
  1731. This method adds a BitTorrent download by uploading a ".torrent" file.
  1732. If you want to add a BitTorrent Magnet URI, use the :func:`aria2.addUri`
  1733. method instead. *torrent* must be a base64-encoded string containing the
  1734. contents of the ".torrent" file.
  1735. *uris* is an array of URIs (string). *uris* is used for
  1736. Web-seeding. For single file torrents, the URI can be a complete URI
  1737. pointing to the resource; if URI ends with /, name in torrent file
  1738. is added. For multi-file torrents, name and path in torrent are
  1739. added to form a URI for each file.
  1740. *options* is a struct and its members are pairs of option name and value.
  1741. See :ref:`rpc_options` below for more details.
  1742. If *position* is given, it must be an integer starting from 0. The new
  1743. download will be inserted at *position* in the waiting queue. If
  1744. *position* is omitted or *position* is larger than the current size of the
  1745. queue, the new download is appended to the end of the queue.
  1746. This method returns the GID of the newly registered download.
  1747. If :option:`--rpc-save-upload-metadata` is ``true``, the
  1748. uploaded data is saved as a file named as the hex string of SHA-1 hash of
  1749. data plus ".torrent" in the directory specified by :option:`--dir
  1750. <-d>` option. E.g. a file name might be
  1751. ``0a3893293e27ac0490424c06de4d09242215f0a6.torrent``. If a file with the
  1752. same name already exists, it is overwritten! If the file cannot be saved
  1753. successfully or :option:`--rpc-save-upload-metadata` is ``false``,
  1754. the downloads added by this method are not saved by :option:`--save-session`.
  1755. The following examples add local file ``file.torrent``.
  1756. **JSON-RPC Example**
  1757. ::
  1758. >>> import urllib2, json, base64
  1759. >>> torrent = base64.b64encode(open('file.torrent').read())
  1760. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'asdf',
  1761. ... 'method':'aria2.addTorrent', 'params':[torrent]})
  1762. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1763. >>> c.read()
  1764. '{"id":"asdf","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1765. **XML-RPC Example**
  1766. ::
  1767. >>> import xmlrpclib
  1768. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1769. >>> s.aria2.addTorrent(xmlrpclib.Binary(open('file.torrent', mode='rb').read()))
  1770. '2089b05ecca3d829'
  1771. .. function:: aria2.addMetalink([secret], metalink[, options[, position]])
  1772. This method adds a Metalink download by uploading a ".metalink" file.
  1773. *metalink* is a base64-encoded string which contains the contents of the
  1774. ".metalink" file.
  1775. *options* is a struct and its members are pairs of option name and value.
  1776. See :ref:`rpc_options` below for more details.
  1777. If *position* is given, it must be an integer starting from 0. The new
  1778. download will be inserted at *position* in the waiting queue. If
  1779. *position* is omitted or *position* is larger than the current size of the
  1780. queue, the new download is appended to the end of the queue.
  1781. This method returns an array of GIDs of newly registered downloads.
  1782. If :option:`--rpc-save-upload-metadata` is ``true``, the uploaded data
  1783. is saved as a file named hex string of SHA-1 hash of data plus
  1784. ".metalink" in the directory specified by :option:`--dir <-d>`
  1785. option. E.g. a file name might be
  1786. ``0a3893293e27ac0490424c06de4d09242215f0a6.metalink``. If a file with the
  1787. same name already exists, it is overwritten! If the file cannot be saved
  1788. successfully or :option:`--rpc-save-upload-metadata` is ``false``,
  1789. the downloads added by this method are not saved by
  1790. :option:`--save-session`.
  1791. The following examples add local file file.meta4.
  1792. **JSON-RPC Example**
  1793. ::
  1794. >>> import urllib2, json, base64
  1795. >>> metalink = base64.b64encode(open('file.meta4').read())
  1796. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1797. ... 'method':'aria2.addMetalink',
  1798. ... 'params':[metalink]})
  1799. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1800. >>> c.read()
  1801. '{"id":"qwer","jsonrpc":"2.0","result":["2089b05ecca3d829"]}'
  1802. **XML-RPC Example**
  1803. ::
  1804. >>> import xmlrpclib
  1805. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1806. >>> s.aria2.addMetalink(xmlrpclib.Binary(open('file.meta4', mode='rb').read()))
  1807. ['2089b05ecca3d829']
  1808. .. function:: aria2.remove([secret], gid)
  1809. This method removes the download denoted by *gid* (string). If the specified
  1810. download is in progress, it is first stopped. The status of the removed
  1811. download becomes ``removed``.
  1812. This method returns GID of removed download.
  1813. The following examples remove a download with GID#2089b05ecca3d829.
  1814. **JSON-RPC Example**
  1815. ::
  1816. >>> import urllib2, json
  1817. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1818. ... 'method':'aria2.remove',
  1819. ... 'params':['2089b05ecca3d829']})
  1820. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1821. >>> c.read()
  1822. '{"id":"qwer","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1823. **XML-RPC Example**
  1824. ::
  1825. >>> import xmlrpclib
  1826. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1827. >>> s.aria2.remove('2089b05ecca3d829')
  1828. '2089b05ecca3d829'
  1829. .. function:: aria2.forceRemove([secret], gid)
  1830. This method removes the download denoted by *gid*. This method
  1831. behaves just like :func:`aria2.remove` except that this method removes
  1832. the download without performing any actions which take time, such as
  1833. contacting BitTorrent trackers to unregister the download first.
  1834. .. function:: aria2.pause([secret], gid)
  1835. This method pauses the download denoted by *gid* (string). The status of
  1836. paused download becomes ``paused``. If the download was active, the download
  1837. is placed in the front of waiting queue. While the status is ``paused``,
  1838. the download is not started. To change status to ``waiting``, use the
  1839. :func:`aria2.unpause` method.
  1840. This method returns GID of paused download.
  1841. .. function:: aria2.pauseAll([secret])
  1842. This method is equal to calling :func:`aria2.pause` for every active/waiting
  1843. download. This methods returns ``OK``.
  1844. .. function:: aria2.forcePause([secret], gid)
  1845. This method pauses the download denoted by *gid*. This method
  1846. behaves just like :func:`aria2.pause` except that this method pauses
  1847. downloads without performing any actions which take time, such as contacting
  1848. BitTorrent trackers to unregister the download first.
  1849. .. function:: aria2.forcePauseAll([secret])
  1850. This method is equal to calling :func:`aria2.forcePause` for every
  1851. active/waiting download. This methods returns ``OK``.
  1852. .. function:: aria2.unpause([secret], gid)
  1853. This method changes the status of the download denoted by *gid* (string) from
  1854. ``paused`` to ``waiting``, making the download eligible to be restarted.
  1855. This method returns the GID of the unpaused download.
  1856. .. function:: aria2.unpauseAll([secret])
  1857. This method is equal to calling :func:`aria2.unpause` for every active/waiting
  1858. download. This methods returns ``OK``.
  1859. .. function:: aria2.tellStatus([secret], gid[, keys])
  1860. This method returns the progress of the download denoted by *gid* (string).
  1861. *keys* is an array of strings. If specified, the response contains only keys
  1862. in the *keys* array. If *keys* is empty or omitted, the response contains all
  1863. keys. This is useful when you just want specific keys and avoid unnecessary
  1864. transfers.
  1865. For example, ``aria2.tellStatus("2089b05ecca3d829", ["gid", "status"])``
  1866. returns the *gid* and *status* keys only. The response is a struct and
  1867. contains following keys. Values are strings.
  1868. ``gid``
  1869. GID of the download.
  1870. ``status``
  1871. ``active`` for currently downloading/seeding downloads.
  1872. ``waiting`` for downloads in the queue; download is not started.
  1873. ``paused`` for paused downloads.
  1874. ``error`` for downloads that were stopped because of error.
  1875. ``complete`` for stopped and completed downloads.
  1876. ``removed`` for the downloads removed by user.
  1877. ``totalLength``
  1878. Total length of the download in bytes.
  1879. ``completedLength``
  1880. Completed length of the download in bytes.
  1881. ``uploadLength``
  1882. Uploaded length of the download in bytes.
  1883. ``bitfield``
  1884. Hexadecimal representation of the download progress. The highest bit
  1885. corresponds to the piece at index 0. Any set bits indicate loaded pieces,
  1886. while unset bits indicate not yet loaded and/or missing pieces. Any overflow
  1887. bits at the end are set to zero. When the download was not started yet,
  1888. this key will not be included in the response.
  1889. ``downloadSpeed``
  1890. Download speed of this download measured in bytes/sec.
  1891. ``uploadSpeed``
  1892. Upload speed of this download measured in bytes/sec.
  1893. ``infoHash``
  1894. InfoHash. BitTorrent only.
  1895. ``numSeeders``
  1896. The number of seeders aria2 has connected to. BitTorrent only.
  1897. ``seeder``
  1898. ``true`` if the local endpoint is a seeder. Otherwise ``false``.
  1899. BitTorrent only.
  1900. ``pieceLength``
  1901. Piece length in bytes.
  1902. ``numPieces``
  1903. The number of pieces.
  1904. ``connections``
  1905. The number of peers/servers aria2 has connected to.
  1906. ``errorCode``
  1907. The code of the last error for this item, if any. The value
  1908. is a string. The error codes are defined in the `EXIT STATUS`_ section.
  1909. This value is only available for stopped/completed downloads.
  1910. ``errorMessage``
  1911. The (hopefully) human readable error message associated to
  1912. ``errorCode``.
  1913. ``followedBy``
  1914. List of GIDs which are generated as the result of this
  1915. download. For example, when aria2 downloads a Metalink file, it
  1916. generates downloads described in the Metalink (see the
  1917. :option:`--follow-metalink` option). This value is useful to track
  1918. auto-generated downloads. If there are no such downloads, this key will not
  1919. be included in the response.
  1920. ``following``
  1921. The reverse link for ``followedBy``. A download included in
  1922. ``followedBy`` has this object's GID in its ``following`` value.
  1923. ``belongsTo``
  1924. GID of a parent download. Some downloads are a part of another
  1925. download. For example, if a file in a Metalink has BitTorrent
  1926. resources, the downloads of ".torrent" files are parts of that parent.
  1927. If this download has no parent, this key will not be included in the
  1928. response.
  1929. ``dir``
  1930. Directory to save files.
  1931. ``files``
  1932. Returns the list of files. The elements of this list are the same structs
  1933. used in :func:`aria2.getFiles` method.
  1934. ``bittorrent``
  1935. Struct which contains information retrieved from the .torrent
  1936. (file). BitTorrent only. It contains following keys.
  1937. ``announceList``
  1938. List of lists of announce URIs. If the torrent contains ``announce``
  1939. and no ``announce-list``, ``announce`` is converted to the
  1940. ``announce-list`` format.
  1941. ``comment``
  1942. The comment of the torrent. ``comment.utf-8`` is used if available.
  1943. ``creationDate``
  1944. The creation time of the torrent. The value is an integer since
  1945. the epoch, measured in seconds.
  1946. ``mode``
  1947. File mode of the torrent. The value is either ``single`` or ``multi``.
  1948. ``info``
  1949. Struct which contains data from Info dictionary. It contains
  1950. following keys.
  1951. ``name``
  1952. name in info dictionary. ``name.utf-8`` is used if available.
  1953. ``verifiedLength``
  1954. The number of verified number of bytes while the files are being
  1955. hash checked. This key exists only when this download is being
  1956. hash checked.
  1957. ``verifyIntegrityPending``
  1958. ``true`` if this download is waiting for the hash check in a
  1959. queue. This key exists only when this download is in the queue.
  1960. **JSON-RPC Example**
  1961. The following example gets information about a download with GID#2089b05ecca3d829::
  1962. >>> import urllib2, json
  1963. >>> from pprint import pprint
  1964. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1965. ... 'method':'aria2.tellStatus',
  1966. ... 'params':['2089b05ecca3d829']})
  1967. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1968. >>> pprint(json.loads(c.read()))
  1969. {u'id': u'qwer',
  1970. u'jsonrpc': u'2.0',
  1971. u'result': {u'bitfield': u'0000000000',
  1972. u'completedLength': u'901120',
  1973. u'connections': u'1',
  1974. u'dir': u'/downloads',
  1975. u'downloadSpeed': u'15158',
  1976. u'files': [{u'index': u'1',
  1977. u'length': u'34896138',
  1978. u'completedLength': u'34896138',
  1979. u'path': u'/downloads/file',
  1980. u'selected': u'true',
  1981. u'uris': [{u'status': u'used',
  1982. u'uri': u'http://example.org/file'}]}],
  1983. u'gid': u'2089b05ecca3d829',
  1984. u'numPieces': u'34',
  1985. u'pieceLength': u'1048576',
  1986. u'status': u'active',
  1987. u'totalLength': u'34896138',
  1988. u'uploadLength': u'0',
  1989. u'uploadSpeed': u'0'}}
  1990. The following example gets only specific keys::
  1991. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1992. ... 'method':'aria2.tellStatus',
  1993. ... 'params':['2089b05ecca3d829',
  1994. ... ['gid',
  1995. ... 'totalLength',
  1996. ... 'completedLength']]})
  1997. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1998. >>> pprint(json.loads(c.read()))
  1999. {u'id': u'qwer',
  2000. u'jsonrpc': u'2.0',
  2001. u'result': {u'completedLength': u'5701632',
  2002. u'gid': u'2089b05ecca3d829',
  2003. u'totalLength': u'34896138'}}
  2004. **XML-RPC Example**
  2005. The following example gets information about a download with GID#2089b05ecca3d829::
  2006. >>> import xmlrpclib
  2007. >>> from pprint import pprint
  2008. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2009. >>> r = s.aria2.tellStatus('2089b05ecca3d829')
  2010. >>> pprint(r)
  2011. {'bitfield': 'ffff80',
  2012. 'completedLength': '34896138',
  2013. 'connections': '0',
  2014. 'dir': '/downloads',
  2015. 'downloadSpeed': '0',
  2016. 'errorCode': '0',
  2017. 'files': [{'index': '1',
  2018. 'length': '34896138',
  2019. 'completedLength': '34896138',
  2020. 'path': '/downloads/file',
  2021. 'selected': 'true',
  2022. 'uris': [{'status': 'used',
  2023. 'uri': 'http://example.org/file'}]}],
  2024. 'gid': '2089b05ecca3d829',
  2025. 'numPieces': '17',
  2026. 'pieceLength': '2097152',
  2027. 'status': 'complete',
  2028. 'totalLength': '34896138',
  2029. 'uploadLength': '0',
  2030. 'uploadSpeed': '0'}
  2031. The following example gets only specific keys::
  2032. >>> r = s.aria2.tellStatus('2089b05ecca3d829', ['gid', 'totalLength', 'completedLength'])
  2033. >>> pprint(r)
  2034. {'completedLength': '34896138', 'gid': '2089b05ecca3d829', 'totalLength': '34896138'}
  2035. .. function:: aria2.getUris([secret], gid)
  2036. This method returns the URIs used in the download denoted by *gid* (string).
  2037. The response is an array of structs and it contains following keys.
  2038. Values are string.
  2039. ``uri``
  2040. URI
  2041. ``status``
  2042. 'used' if the URI is in use. 'waiting' if the URI is still waiting in the
  2043. queue.
  2044. **JSON-RPC Example**
  2045. ::
  2046. >>> import urllib2, json
  2047. >>> from pprint import pprint
  2048. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2049. ... 'method':'aria2.getUris',
  2050. ... 'params':['2089b05ecca3d829']})
  2051. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2052. >>> pprint(json.loads(c.read()))
  2053. {u'id': u'qwer',
  2054. u'jsonrpc': u'2.0',
  2055. u'result': [{u'status': u'used',
  2056. u'uri': u'http://example.org/file'}]}
  2057. **XML-RPC Example**
  2058. ::
  2059. >>> import xmlrpclib
  2060. >>> from pprint import pprint
  2061. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2062. >>> r = s.aria2.getUris('2089b05ecca3d829')
  2063. >>> pprint(r)
  2064. [{'status': 'used', 'uri': 'http://example.org/file'}]
  2065. .. function:: aria2.getFiles([secret], gid)
  2066. This method returns the file list of the download denoted by *gid* (string).
  2067. The response is an array of structs which contain following keys.
  2068. Values are strings.
  2069. ``index``
  2070. Index of the file, starting at 1, in the same order as files appear in the
  2071. multi-file torrent.
  2072. ``path``
  2073. File path.
  2074. ``length``
  2075. File size in bytes.
  2076. ``completedLength``
  2077. Completed length of this file in bytes. Please note that it is
  2078. possible that sum of ``completedLength`` is less than the
  2079. ``completedLength`` returned by the :func:`aria2.tellStatus` method.
  2080. This is because ``completedLength`` in
  2081. :func:`aria2.getFiles`
  2082. only includes completed pieces. On the other hand, ``completedLength``
  2083. in :func:`aria2.tellStatus` also includes partially completed pieces.
  2084. ``selected``
  2085. ``true`` if this file is selected by :option:`--select-file` option. If
  2086. :option:`--select-file` is not specified or this is single-file torrent or
  2087. not a torrent download at all, this value is always ``true``. Otherwise
  2088. ``false``.
  2089. ``uris``
  2090. Returns a list of URIs for this file. The element type is the same struct
  2091. used in the :func:`aria2.getUris` method.
  2092. **JSON-RPC Example**
  2093. ::
  2094. >>> import urllib2, json
  2095. >>> from pprint import pprint
  2096. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2097. ... 'method':'aria2.getFiles',
  2098. ... 'params':['2089b05ecca3d829']})
  2099. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2100. >>> pprint(json.loads(c.read()))
  2101. {u'id': u'qwer',
  2102. u'jsonrpc': u'2.0',
  2103. u'result': [{u'index': u'1',
  2104. u'length': u'34896138',
  2105. u'completedLength': u'34896138',
  2106. u'path': u'/downloads/file',
  2107. u'selected': u'true',
  2108. u'uris': [{u'status': u'used',
  2109. u'uri': u'http://example.org/file'}]}]}
  2110. **XML-RPC Example**
  2111. ::
  2112. >>> import xmlrpclib
  2113. >>> from pprint import pprint
  2114. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2115. >>> r = s.aria2.getFiles('2089b05ecca3d829')
  2116. >>> pprint(r)
  2117. [{'index': '1',
  2118. 'length': '34896138',
  2119. 'completedLength': '34896138',
  2120. 'path': '/downloads/file',
  2121. 'selected': 'true',
  2122. 'uris': [{'status': 'used',
  2123. 'uri': 'http://example.org/file'}]}]
  2124. .. function:: aria2.getPeers([secret], gid)
  2125. This method returns a list peers of the download denoted by *gid* (string).
  2126. This method is for BitTorrent only. The response is an array of structs and
  2127. contains the following keys. Values are strings.
  2128. ``peerId``
  2129. Percent-encoded peer ID.
  2130. ``ip``
  2131. IP address of the peer.
  2132. ``port``
  2133. Port number of the peer.
  2134. ``bitfield``
  2135. Hexadecimal representation of the download progress of the peer. The
  2136. highest bit corresponds to the piece at index 0. Set bits indicate the
  2137. piece is available and unset bits indicate the piece is missing. Any
  2138. spare bits at the end are set to zero.
  2139. ``amChoking``
  2140. ``true`` if aria2 is choking the peer. Otherwise ``false``.
  2141. ``peerChoking``
  2142. ``true`` if the peer is choking aria2. Otherwise ``false``.
  2143. ``downloadSpeed``
  2144. Download speed (byte/sec) that this client obtains from the peer.
  2145. ``uploadSpeed``
  2146. Upload speed(byte/sec) that this client uploads to the peer.
  2147. ``seeder``
  2148. ``true`` if this peer is a seeder. Otherwise ``false``.
  2149. **JSON-RPC Example**
  2150. ::
  2151. >>> import urllib2, json
  2152. >>> from pprint import pprint
  2153. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2154. ... 'method':'aria2.getPeers',
  2155. ... 'params':['2089b05ecca3d829']})
  2156. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2157. >>> pprint(json.loads(c.read()))
  2158. {u'id': u'qwer',
  2159. u'jsonrpc': u'2.0',
  2160. u'result': [{u'amChoking': u'true',
  2161. u'bitfield': u'ffffffffffffffffffffffffffffffffffffffff',
  2162. u'downloadSpeed': u'10602',
  2163. u'ip': u'10.0.0.9',
  2164. u'peerChoking': u'false',
  2165. u'peerId': u'aria2%2F1%2E10%2E5%2D%87%2A%EDz%2F%F7%E6',
  2166. u'port': u'6881',
  2167. u'seeder': u'true',
  2168. u'uploadSpeed': u'0'},
  2169. {u'amChoking': u'false',
  2170. u'bitfield': u'ffffeff0fffffffbfffffff9fffffcfff7f4ffff',
  2171. u'downloadSpeed': u'8654',
  2172. u'ip': u'10.0.0.30',
  2173. u'peerChoking': u'false',
  2174. u'peerId': u'bittorrent client758',
  2175. u'port': u'37842',
  2176. u'seeder': u'false',
  2177. u'uploadSpeed': u'6890'}]}
  2178. **XML-RPC Example**
  2179. ::
  2180. >>> import xmlrpclib
  2181. >>> from pprint import pprint
  2182. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2183. >>> r = s.aria2.getPeers('2089b05ecca3d829')
  2184. >>> pprint(r)
  2185. [{'amChoking': 'true',
  2186. 'bitfield': 'ffffffffffffffffffffffffffffffffffffffff',
  2187. 'downloadSpeed': '10602',
  2188. 'ip': '10.0.0.9',
  2189. 'peerChoking': 'false',
  2190. 'peerId': 'aria2%2F1%2E10%2E5%2D%87%2A%EDz%2F%F7%E6',
  2191. 'port': '6881',
  2192. 'seeder': 'true',
  2193. 'uploadSpeed': '0'},
  2194. {'amChoking': 'false',
  2195. 'bitfield': 'ffffeff0fffffffbfffffff9fffffcfff7f4ffff',
  2196. 'downloadSpeed': '8654',
  2197. 'ip': '10.0.0.30',
  2198. 'peerChoking': 'false',
  2199. 'peerId': 'bittorrent client758',
  2200. 'port': '37842',
  2201. 'seeder': 'false,
  2202. 'uploadSpeed': '6890'}]
  2203. .. function:: aria2.getServers([secret], gid)
  2204. This method returns currently connected HTTP(S)/FTP/SFTP servers of
  2205. the download denoted by *gid* (string). The response is an array of
  2206. structs and contains the following keys. Values are strings.
  2207. ``index``
  2208. Index of the file, starting at 1, in the same order as files appear in the
  2209. multi-file metalink.
  2210. ``servers``
  2211. A list of structs which contain the following keys.
  2212. ``uri``
  2213. Original URI.
  2214. ``currentUri``
  2215. This is the URI currently used for downloading. If redirection is
  2216. involved, currentUri and uri may differ.
  2217. ``downloadSpeed``
  2218. Download speed (byte/sec)
  2219. **JSON-RPC Example**
  2220. ::
  2221. >>> import urllib2, json
  2222. >>> from pprint import pprint
  2223. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2224. ... 'method':'aria2.getServers',
  2225. ... 'params':['2089b05ecca3d829']})
  2226. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2227. >>> pprint(json.loads(c.read()))
  2228. {u'id': u'qwer',
  2229. u'jsonrpc': u'2.0',
  2230. u'result': [{u'index': u'1',
  2231. u'servers': [{u'currentUri': u'http://example.org/file',
  2232. u'downloadSpeed': u'10467',
  2233. u'uri': u'http://example.org/file'}]}]}
  2234. **XML-RPC Example**
  2235. ::
  2236. >>> import xmlrpclib
  2237. >>> from pprint import pprint
  2238. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2239. >>> r = s.aria2.getServers('2089b05ecca3d829')
  2240. >>> pprint(r)
  2241. [{'index': '1',
  2242. 'servers': [{'currentUri': 'http://example.org/dl/file',
  2243. 'downloadSpeed': '20285',
  2244. 'uri': 'http://example.org/file'}]}]
  2245. .. function:: aria2.tellActive([secret], [keys])
  2246. This method returns a list of active downloads. The response is an array of
  2247. the same structs as returned by the :func:`aria2.tellStatus` method.
  2248. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2249. .. function:: aria2.tellWaiting([secret], offset, num, [keys])
  2250. This method returns a list of waiting downloads, including paused
  2251. ones.
  2252. *offset* is an integer and specifies the offset from
  2253. the download waiting at the front.
  2254. *num* is an integer and specifies the max. number of downloads to be returned.
  2255. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2256. If *offset* is a positive integer, this method returns downloads in the
  2257. range of [*offset*, *offset* + *num*).
  2258. *offset* can be a negative integer. *offset* == -1 points last
  2259. download in the waiting queue and *offset* == -2 points the download
  2260. before the last download, and so on. Downloads in the response are
  2261. in reversed order then.
  2262. For example, imagine three downloads "A","B" and "C" are waiting
  2263. in this order. ``aria2.tellWaiting(0, 1)`` returns
  2264. ``["A"]``. ``aria2.tellWaiting(1, 2)`` returns ``["B", "C"]``.
  2265. ``aria2.tellWaiting(-1, 2)`` returns ``["C", "B"]``.
  2266. The response is an array of the same structs as returned by
  2267. :func:`aria2.tellStatus` method.
  2268. .. function:: aria2.tellStopped([secret], offset, num, [keys])
  2269. This method returns a list of stopped downloads.
  2270. *offset* is an integer and specifies the offset from the least recently
  2271. stopped download.
  2272. *num* is an integer and specifies the max. number of downloads to be returned.
  2273. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2274. *offset* and *num* have the same semantics as described in the
  2275. :func:`aria2.tellWaiting` method.
  2276. The response is an array of the same structs as returned by the
  2277. :func:`aria2.tellStatus` method.
  2278. .. function:: aria2.changePosition([secret], gid, pos, how)
  2279. This method changes the position of the download denoted by
  2280. *gid* in the queue.
  2281. *pos* is an integer.
  2282. *how* is a string. If *how* is ``POS_SET``, it moves the download to a
  2283. position relative to the beginning of the queue. If *how* is ``POS_CUR``, it
  2284. moves the download to a position relative to the current position. If *how* is
  2285. ``POS_END``, it moves the download to a position relative to the end of the
  2286. queue. If the destination position is less than 0 or beyond the end of
  2287. the queue, it moves the download to the beginning or the end of the
  2288. queue respectively. The response is an integer denoting the resulting
  2289. position.
  2290. For example, if GID#2089b05ecca3d829 is currently in position 3,
  2291. ``aria2.changePosition('2089b05ecca3d829', -1, 'POS_CUR')`` will
  2292. change its position to 2. Additionally
  2293. ``aria2.changePosition('2089b05ecca3d829', 0, 'POS_SET')`` will
  2294. change its position to 0 (the beginning of the queue).
  2295. The following examples move the download GID#2089b05ecca3d829 to the
  2296. front of the queue.
  2297. **JSON-RPC Example**
  2298. ::
  2299. >>> import urllib2, json
  2300. >>> from pprint import pprint
  2301. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2302. ... 'method':'aria2.changePosition',
  2303. ... 'params':['2089b05ecca3d829', 0, 'POS_SET']})
  2304. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2305. >>> pprint(json.loads(c.read()))
  2306. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': 0}
  2307. **XML-RPC Example**
  2308. ::
  2309. >>> import xmlrpclib
  2310. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2311. >>> s.aria2.changePosition('2089b05ecca3d829', 0, 'POS_SET')
  2312. 0
  2313. .. function:: aria2.changeUri([secret], gid, fileIndex, delUris, addUris[, position])
  2314. This method removes the URIs in *delUris* from and appends the URIs in
  2315. *addUris* to download denoted by *gid*. *delUris* and *addUris* are
  2316. lists of strings. A download can contain multiple files and URIs are
  2317. attached to each file. *fileIndex* is used to select which file to
  2318. remove/attach given URIs. *fileIndex* is 1-based. *position* is used
  2319. to specify where URIs are inserted in the existing waiting URI
  2320. list. *position* is 0-based. When *position* is omitted, URIs are
  2321. appended to the back of the list. This method first executes the removal
  2322. and then the addition. *position* is the position after URIs are removed,
  2323. not the position when this method is called. When removing an URI, if
  2324. the same URIs exist in download, only one of them is removed for each URI
  2325. in *delUris*. In other words, if there are three URIs
  2326. ``http://example.org/aria2`` and you want remove them all, you have to
  2327. specify (at least) 3 ``http://example.org/aria2`` in *delUris*. This
  2328. method returns a list which contains two integers. The first integer is
  2329. the number of URIs deleted. The second integer is the number of URIs
  2330. added.
  2331. The following examples add the URI ``http://example.org/file`` to the
  2332. file whose index is ``1`` and belongs to the download
  2333. GID#2089b05ecca3d829.
  2334. **JSON-RPC Example**
  2335. ::
  2336. >>> import urllib2, json
  2337. >>> from pprint import pprint
  2338. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2339. ... 'method':'aria2.changeUri',
  2340. ... 'params':['2089b05ecca3d829', 1, [],
  2341. ['http://example.org/file']]})
  2342. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2343. >>> pprint(json.loads(c.read()))
  2344. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': [0, 1]}
  2345. **XML-RPC Example**
  2346. ::
  2347. >>> import xmlrpclib
  2348. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2349. >>> s.aria2.changeUri('2089b05ecca3d829', 1, [],
  2350. ['http://example.org/file'])
  2351. [0, 1]
  2352. .. function:: aria2.getOption([secret], gid)
  2353. This method returns options of the download denoted by *gid*. The
  2354. response is a struct where keys are the names of options.
  2355. The values are strings.
  2356. Note that this method does not return options which
  2357. have no default value and have not been set on the command-line, in
  2358. configuration files or RPC methods.
  2359. The following examples get options of the download
  2360. GID#2089b05ecca3d829.
  2361. **JSON-RPC Example**
  2362. ::
  2363. >>> import urllib2, json
  2364. >>> from pprint import pprint
  2365. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2366. ... 'method':'aria2.getOption',
  2367. ... 'params':['2089b05ecca3d829']})
  2368. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2369. >>> pprint(json.loads(c.read()))
  2370. {u'id': u'qwer',
  2371. u'jsonrpc': u'2.0',
  2372. u'result': {u'allow-overwrite': u'false',
  2373. u'allow-piece-length-change': u'false',
  2374. u'always-resume': u'true',
  2375. u'async-dns': u'true',
  2376. ...
  2377. **XML-RPC Example**
  2378. ::
  2379. >>> import xmlrpclib
  2380. >>> from pprint import pprint
  2381. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2382. >>> r = s.aria2.getOption('2089b05ecca3d829')
  2383. >>> pprint(r)
  2384. {'allow-overwrite': 'false',
  2385. 'allow-piece-length-change': 'false',
  2386. 'always-resume': 'true',
  2387. 'async-dns': 'true',
  2388. ....
  2389. .. function:: aria2.changeOption([secret], gid, options)
  2390. This method changes options of the download denoted by *gid* (string)
  2391. dynamically. *options* is a struct.
  2392. The options listed in `Input File`_ subsection are available,
  2393. **except** for following options:
  2394. * :option:`dry-run <--dry-run>`
  2395. * :option:`metalink-base-uri <--metalink-base-uri>`
  2396. * :option:`parameterized-uri <-P>`
  2397. * :option:`pause <--pause>`
  2398. * :option:`piece-length <--piece-length>`
  2399. * :option:`rpc-save-upload-metadata <--rpc-save-upload-metadata>`
  2400. Except for the following options, changing the other options of
  2401. active download makes it restart (restart itself is managed by
  2402. aria2, and no user intervention is required):
  2403. * :option:`bt-max-peers <--bt-max-peers>`
  2404. * :option:`bt-request-peer-speed-limit <--bt-request-peer-speed-limit>`
  2405. * :option:`bt-remove-unselected-file <--bt-remove-unselected-file>`
  2406. * :option:`force-save <--force-save>`
  2407. * :option:`max-download-limit <--max-download-limit>`
  2408. * :option:`max-upload-limit <-u>`
  2409. This method returns ``OK`` for success.
  2410. The following examples set the :option:`max-download-limit
  2411. <--max-download-limit>` option to ``20K`` for the download
  2412. GID#2089b05ecca3d829.
  2413. **JSON-RPC Example**
  2414. ::
  2415. >>> import urllib2, json
  2416. >>> from pprint import pprint
  2417. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2418. ... 'method':'aria2.changeOption',
  2419. ... 'params':['2089b05ecca3d829',
  2420. ... {'max-download-limit':'10K'}]})
  2421. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2422. >>> pprint(json.loads(c.read()))
  2423. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'OK'}
  2424. **XML-RPC Example**
  2425. ::
  2426. >>> import xmlrpclib
  2427. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2428. >>> s.aria2.changeOption('2089b05ecca3d829', {'max-download-limit':'20K'})
  2429. 'OK'
  2430. .. function:: aria2.getGlobalOption([secret])
  2431. This method returns the global options. The response is a struct. Its keys
  2432. are the names of options. Values are strings.
  2433. Note that this method does not return options which have no default
  2434. value and have not been set on the command-line, in configuration
  2435. files or RPC methods. Because global options are used as a template
  2436. for the options of newly added downloads, the response contains keys
  2437. returned by the :func:`aria2.getOption` method.
  2438. .. function:: aria2.changeGlobalOption([secret], options)
  2439. This method changes global options dynamically. *options* is a struct.
  2440. The following options are available:
  2441. * :option:`bt-max-open-files <--bt-max-open-files>`
  2442. * :option:`download-result <--download-result>`
  2443. * :option:`keep-unfinished-download-result <--keep-unfinished-download-result>`
  2444. * :option:`log <-l>`
  2445. * :option:`log-level <--log-level>`
  2446. * :option:`max-concurrent-downloads <-j>`
  2447. * :option:`max-download-result <--max-download-result>`
  2448. * :option:`max-overall-download-limit <--max-overall-download-limit>`
  2449. * :option:`max-overall-upload-limit <--max-overall-upload-limit>`
  2450. * :option:`optimize-concurrent-downloads <--optimize-concurrent-downloads>`
  2451. * :option:`save-cookies <--save-cookies>`
  2452. * :option:`save-session <--save-session>`
  2453. * :option:`server-stat-of <--server-stat-of>`
  2454. In addition, options listed in the `Input File`_ subsection
  2455. are available, **except** for following options:
  2456. :option:`checksum <--checksum>`,
  2457. :option:`index-out <-O>`,
  2458. :option:`out <-o>`,
  2459. :option:`pause <--pause>` and
  2460. :option:`select-file <--select-file>`.
  2461. With the :option:`log <-l>` option, you can dynamically start logging or
  2462. change log file. To stop logging, specify an empty string("") as the parameter
  2463. value. Note that log file is always opened in append mode. This method
  2464. returns ``OK`` for success.
  2465. .. function:: aria2.getGlobalStat([secret])
  2466. This method returns global statistics such as the overall download and
  2467. upload speeds. The response is a struct and contains the following
  2468. keys. Values are strings.
  2469. ``downloadSpeed``
  2470. Overall download speed (byte/sec).
  2471. ``uploadSpeed``
  2472. Overall upload speed(byte/sec).
  2473. ``numActive``
  2474. The number of active downloads.
  2475. ``numWaiting``
  2476. The number of waiting downloads.
  2477. ``numStopped``
  2478. The number of stopped downloads in the current session. This value
  2479. is capped by the :option:`--max-download-result` option.
  2480. ``numStoppedTotal``
  2481. The number of stopped downloads in the current session and *not*
  2482. capped by the :option:`--max-download-result` option.
  2483. **JSON-RPC Example**
  2484. ::
  2485. >>> import urllib2, json
  2486. >>> from pprint import pprint
  2487. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2488. ... 'method':'aria2.getGlobalStat'})
  2489. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2490. >>> pprint(json.loads(c.read()))
  2491. {u'id': u'qwer',
  2492. u'jsonrpc': u'2.0',
  2493. u'result': {u'downloadSpeed': u'21846',
  2494. u'numActive': u'2',
  2495. u'numStopped': u'0',
  2496. u'numWaiting': u'0',
  2497. u'uploadSpeed': u'0'}}
  2498. **XML-RPC Example**
  2499. ::
  2500. >>> import xmlrpclib
  2501. >>> from pprint import pprint
  2502. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2503. >>> r = s.aria2.getGlobalStat()
  2504. >>> pprint(r)
  2505. {'downloadSpeed': '23136',
  2506. 'numActive': '2',
  2507. 'numStopped': '0',
  2508. 'numWaiting': '0',
  2509. 'uploadSpeed': '0'}
  2510. .. function:: aria2.purgeDownloadResult([secret])
  2511. This method purges completed/error/removed downloads to free memory.
  2512. This method returns ``OK``.
  2513. .. function:: aria2.removeDownloadResult([secret], gid)
  2514. This method removes a completed/error/removed download denoted by *gid*
  2515. from memory. This method returns ``OK`` for success.
  2516. The following examples remove the download result of the download
  2517. GID#2089b05ecca3d829.
  2518. **JSON-RPC Example**
  2519. ::
  2520. >>> import urllib2, json
  2521. >>> from pprint import pprint
  2522. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2523. ... 'method':'aria2.removeDownloadResult',
  2524. ... 'params':['2089b05ecca3d829']})
  2525. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2526. >>> pprint(json.loads(c.read()))
  2527. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'OK'}
  2528. **XML-RPC Example**
  2529. ::
  2530. >>> import xmlrpclib
  2531. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2532. >>> s.aria2.removeDownloadResult('2089b05ecca3d829')
  2533. 'OK'
  2534. .. function:: aria2.getVersion([secret])
  2535. This method returns the version of aria2 and the list of enabled
  2536. features. The response is a struct and contains following keys.
  2537. ``version``
  2538. Version number of aria2 as a string.
  2539. ``enabledFeatures``
  2540. List of enabled features. Each feature is given as a string.
  2541. **JSON-RPC Example**
  2542. ::
  2543. >>> import urllib2, json
  2544. >>> from pprint import pprint
  2545. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2546. ... 'method':'aria2.getVersion'})
  2547. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2548. >>> pprint(json.loads(c.read()))
  2549. {u'id': u'qwer',
  2550. u'jsonrpc': u'2.0',
  2551. u'result': {u'enabledFeatures': [u'Async DNS',
  2552. u'BitTorrent',
  2553. u'Firefox3 Cookie',
  2554. u'GZip',
  2555. u'HTTPS',
  2556. u'Message Digest',
  2557. u'Metalink',
  2558. u'XML-RPC'],
  2559. u'version': u'1.11.0'}}
  2560. **XML-RPC Example**
  2561. ::
  2562. >>> import xmlrpclib
  2563. >>> from pprint import pprint
  2564. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2565. >>> r = s.aria2.getVersion()
  2566. >>> pprint(r)
  2567. {'enabledFeatures': ['Async DNS',
  2568. 'BitTorrent',
  2569. 'Firefox3 Cookie',
  2570. 'GZip',
  2571. 'HTTPS',
  2572. 'Message Digest',
  2573. 'Metalink',
  2574. 'XML-RPC'],
  2575. 'version': '1.11.0'}
  2576. .. function:: aria2.getSessionInfo([secret])
  2577. This method returns session information.
  2578. The response is a struct and contains following key.
  2579. ``sessionId``
  2580. Session ID, which is generated each time when aria2 is invoked.
  2581. **JSON-RPC Example**
  2582. ::
  2583. >>> import urllib2, json
  2584. >>> from pprint import pprint
  2585. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2586. ... 'method':'aria2.getSessionInfo'})
  2587. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2588. >>> pprint(json.loads(c.read()))
  2589. {u'id': u'qwer',
  2590. u'jsonrpc': u'2.0',
  2591. u'result': {u'sessionId': u'cd6a3bc6a1de28eb5bfa181e5f6b916d44af31a9'}}
  2592. **XML-RPC Example**
  2593. ::
  2594. >>> import xmlrpclib
  2595. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2596. >>> s.aria2.getSessionInfo()
  2597. {'sessionId': 'cd6a3bc6a1de28eb5bfa181e5f6b916d44af31a9'}
  2598. .. function:: aria2.shutdown([secret])
  2599. This method shuts down aria2. This method returns ``OK``.
  2600. .. function:: aria2.forceShutdown([secret])
  2601. This method shuts down :func:`aria2`. This method behaves like
  2602. :func:'aria2.shutdown` without performing any actions which take time,
  2603. such as contacting BitTorrent trackers to unregister downloads first.
  2604. This method returns ``OK``.
  2605. .. function:: aria2.saveSession([secret])
  2606. This method saves the current session to a file specified by the
  2607. :option:`--save-session` option. This method returns ``OK`` if it
  2608. succeeds.
  2609. .. function:: system.multicall(methods)
  2610. This methods encapsulates multiple method calls in a single request.
  2611. *methods* is an array of structs. The structs contain two keys:
  2612. ``methodName`` and ``params``. ``methodName`` is the
  2613. method name to call and ``params`` is array containing parameters to the
  2614. method call. This method returns an array of responses. The elements
  2615. will be either a one-item array containing the return value of the
  2616. method call or a struct of fault element if an encapsulated method call
  2617. fails.
  2618. In the following examples, we add 2 downloads. The first one is
  2619. ``http://example.org/file`` and the second one is ``file.torrent``.
  2620. **JSON-RPC Example**
  2621. ::
  2622. >>> import urllib2, json, base64
  2623. >>> from pprint import pprint
  2624. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2625. ... 'method':'system.multicall',
  2626. ... 'params':[[{'methodName':'aria2.addUri',
  2627. ... 'params':[['http://example.org']]},
  2628. ... {'methodName':'aria2.addTorrent',
  2629. ... 'params':[base64.b64encode(open('file.torrent').read())]}]]})
  2630. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2631. >>> pprint(json.loads(c.read()))
  2632. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': [[u'2089b05ecca3d829'], [u'd2703803b52216d1']]}
  2633. JSON-RPC additionally supports Batch requests as described in the
  2634. JSON-RPC 2.0 Specification::
  2635. >>> jsonreq = json.dumps([{'jsonrpc':'2.0', 'id':'qwer',
  2636. ... 'method':'aria2.addUri',
  2637. ... 'params':[['http://example.org']]},
  2638. ... {'jsonrpc':'2.0', 'id':'asdf',
  2639. ... 'method':'aria2.addTorrent',
  2640. ... 'params':[base64.b64encode(open('file.torrent').read())]}])
  2641. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2642. >>> pprint(json.loads(c.read()))
  2643. [{u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'2089b05ecca3d829'},
  2644. {u'id': u'asdf', u'jsonrpc': u'2.0', u'result': u'd2703803b52216d1'}]
  2645. **XML-RPC Example**
  2646. ::
  2647. >>> import xmlrpclib
  2648. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2649. >>> mc = xmlrpclib.MultiCall(s)
  2650. >>> mc.aria2.addUri(['http://example.org/file'])
  2651. >>> mc.aria2.addTorrent(xmlrpclib.Binary(open('file.torrent', mode='rb').read()))
  2652. >>> r = mc()
  2653. >>> tuple(r)
  2654. ('2089b05ecca3d829', 'd2703803b52216d1')
  2655. .. function:: system.listMethods()
  2656. This method returns all the available RPC methods in an array of
  2657. string. Unlike other methods, this method does not require secret
  2658. token. This is safe because this method just returns the available
  2659. method names.
  2660. **JSON-RPC Example**
  2661. ::
  2662. >>> import urllib2, json
  2663. >>> from pprint import pprint
  2664. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2665. ... 'method':'system.listMethods'})
  2666. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2667. >>> pprint(json.loads(c.read()))
  2668. {u'id': u'qwer',
  2669. u'jsonrpc': u'2.0',
  2670. u'result': [u'aria2.addUri',
  2671. u'aria2.addTorrent',
  2672. ...
  2673. **XML-RPC Example**
  2674. ::
  2675. >>> import xmlrpclib
  2676. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2677. >>> s.system.listMethods()
  2678. ['aria2.addUri', 'aria2.addTorrent', ...
  2679. .. function:: system.listNotifications()
  2680. This method returns all the available RPC notifications in an array of
  2681. string. Unlike other methods, this method does not require secret
  2682. token. This is safe because this method just returns the available
  2683. notifications names.
  2684. **JSON-RPC Example**
  2685. ::
  2686. >>> import urllib2, json
  2687. >>> from pprint import pprint
  2688. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2689. ... 'method':'system.listNotifications'})
  2690. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2691. >>> pprint(json.loads(c.read()))
  2692. {u'id': u'qwer',
  2693. u'jsonrpc': u'2.0',
  2694. u'result': [u'aria2.onDownloadStart',
  2695. u'aria2.onDownloadPause',
  2696. ...
  2697. **XML-RPC Example**
  2698. ::
  2699. >>> import xmlrpclib
  2700. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2701. >>> s.system.listNotifications()
  2702. ['aria2.onDownloadStart', 'aria2.onDownloadPause', ...
  2703. Error Handling
  2704. ~~~~~~~~~~~~~~
  2705. Over JSON-RPC, aria2 returns a JSON object which contains an error code in
  2706. ``code`` and the error message in ``message``.
  2707. Over XML-RPC, aria2 returns ``faultCode=1`` and the error message in
  2708. ``faultString``.
  2709. .. _rpc_options:
  2710. Options
  2711. ~~~~~~~
  2712. The same options as for :option:`--input-file <-i>` are available. See the
  2713. `Input File`_ subsection for a complete list of options.
  2714. In the option struct, the name element is the option name (without the preceding
  2715. ``--``) and the value element is the argument as a string.
  2716. JSON-RPC Example
  2717. ^^^^^^^^^^^^^^^^
  2718. ::
  2719. {'split':'1', 'http-proxy':'http://proxy/'}
  2720. XML-RPC Example
  2721. ^^^^^^^^^^^^^^^
  2722. .. code-block:: xml
  2723. <struct>
  2724. <member>
  2725. <name>split</name>
  2726. <value><string>1</string></value>
  2727. </member>
  2728. <member>
  2729. <name>http-proxy</name>
  2730. <value><string>http://proxy/</string></value>
  2731. </member>
  2732. </struct>
  2733. The :option:`header <--header>` and :option:`index-out <-O>`
  2734. options are allowed multiple times on the command-line. Since the name should be
  2735. unique in a struct (many XML-RPC library implementations use a hash or dict for
  2736. struct), a single string is not enough. To overcome this limitation, you may use
  2737. an array as the value as well as a string.
  2738. JSON-RPC Example
  2739. ^^^^^^^^^^^^^^^^
  2740. ::
  2741. {'header':['Accept-Language: ja', 'Accept-Charset: utf-8']}
  2742. XML-RPC Example
  2743. ^^^^^^^^^^^^^^^
  2744. .. code-block:: xml
  2745. <struct>
  2746. <member>
  2747. <name>header</name>
  2748. <value>
  2749. <array>
  2750. <data>
  2751. <value><string>Accept-Language: ja</string></value>
  2752. <value><string>Accept-Charset: utf-8</string></value>
  2753. </data>
  2754. </array>
  2755. </value>
  2756. </member>
  2757. </struct>
  2758. The following example adds a download with two options: ``dir`` and ``header``.
  2759. The ``header`` option requires two values, so it uses a list::
  2760. >>> import xmlrpclib
  2761. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2762. >>> opts = dict(dir='/tmp',
  2763. ... header=['Accept-Language: ja',
  2764. ... 'Accept-Charset: utf-8'])
  2765. >>> s.aria2.addUri(['http://example.org/file'], opts)
  2766. '1'
  2767. JSON-RPC using HTTP GET
  2768. ~~~~~~~~~~~~~~~~~~~~~~~
  2769. The JSON-RPC interface also supports requests via HTTP GET.
  2770. The encoding scheme in GET parameters is based on JSON-RPC over HTTP Specification [2008-1-15(RC1)].
  2771. The encoding of GET parameters are follows::
  2772. /jsonrpc?method=METHOD_NAME&id=ID&params=BASE64_ENCODED_PARAMS
  2773. The ``method`` and ``id`` are always treated as JSON string and their
  2774. encoding must be UTF-8.
  2775. For example, The encoded string of
  2776. ``aria2.tellStatus('2089b05ecca3d829')`` with ``id='foo'`` looks like
  2777. this::
  2778. /jsonrpc?method=aria2.tellStatus&id=foo&params=WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D
  2779. The ``params`` parameter is Base64-encoded JSON array which usually
  2780. appears in ``params`` attribute in JSON-RPC request object. In the
  2781. above example, the params is ``["2089b05ecca3d829"]``, therefore::
  2782. ["2089b05ecca3d829"] --(Base64)--> WyIyMDg5YjA1ZWNjYTNkODI5Il0=
  2783. --(Percent Encode)--> WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D
  2784. The JSON-RPC interface also supports JSONP. You can specify the callback
  2785. function in the ``jsoncallback`` parameter::
  2786. /jsonrpc?method=aria2.tellStatus&id=foo&params=WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D&jsoncallback=cb
  2787. For Batch requests, the ``method`` and ``id`` parameters must not be specified.
  2788. The whole request must be specified in the ``params`` parameter. For example,
  2789. a Batch request::
  2790. [{'jsonrpc':'2.0', 'id':'qwer', 'method':'aria2.getVersion'},
  2791. {'jsonrpc':'2.0', 'id':'asdf', 'method':'aria2.tellActive'}]
  2792. must be encoded like this::
  2793. /jsonrpc?params=W3sianNvbnJwYyI6ICIyLjAiLCAiaWQiOiAicXdlciIsICJtZXRob2QiOiAiYXJpYTIuZ2V0VmVyc2lvbiJ9LCB7Impzb25ycGMiOiAiMi4wIiwgImlkIjogImFzZGYiLCAibWV0aG9kIjogImFyaWEyLnRlbGxBY3RpdmUifV0%3D
  2794. JSON-RPC over WebSocket
  2795. ~~~~~~~~~~~~~~~~~~~~~~~
  2796. JSON-RPC over WebSocket uses same method signatures and response
  2797. format as JSON-RPC over HTTP. The supported WebSocket version is 13
  2798. which is detailed in :rfc:`6455`.
  2799. To send a RPC request to the RPC server, send a serialized JSON string
  2800. in a Text frame. The response from the RPC server is delivered also in
  2801. a Text frame.
  2802. Notifications
  2803. ^^^^^^^^^^^^^
  2804. The RPC server might send notifications to the client. Notifications is
  2805. unidirectional, therefore the client which receives the notification must not
  2806. respond to it. The method signature of a notification is much like a normal
  2807. method request but lacks the id key. The value of the params key is the data
  2808. which this notification carries. The format of the value varies depending on the
  2809. notification method. Following notification methods are defined.
  2810. .. function:: aria2.onDownloadStart(event)
  2811. This notification will be sent when a download is started.
  2812. The *event* is of type struct and it contains following keys.
  2813. The value type is string.
  2814. ``gid``
  2815. GID of the download.
  2816. .. function:: aria2.onDownloadPause(event)
  2817. This notification will be sent when a download is paused. The *event*
  2818. is the same struct as the *event* argument of
  2819. :func:`aria2.onDownloadStart` method.
  2820. .. function:: aria2.onDownloadStop(event)
  2821. This notification will be sent when a download is stopped by the user.
  2822. The *event* is the same struct as the *event* argument of
  2823. :func:`aria2.onDownloadStart` method.
  2824. .. function:: aria2.onDownloadComplete(event)
  2825. This notification will be sent when a download is complete. For
  2826. BitTorrent downloads, this notification is sent when the download is
  2827. complete and seeding is over. The *event* is the same struct of the
  2828. *event* argument of
  2829. :func:`aria2.onDownloadStart` method.
  2830. .. function:: aria2.onDownloadError(event)
  2831. This notification will be sent when a download is stopped due to an error.
  2832. The *event* is the same struct as the *event* argument of
  2833. :func:`aria2.onDownloadStart` method.
  2834. .. function:: aria2.onBtDownloadComplete(event)
  2835. This notification will be sent when a torrent download is complete but seeding
  2836. is still going on. The *event* is the same struct as the *event* argument of
  2837. :func:`aria2.onDownloadStart` method.
  2838. Sample XML-RPC Client Code
  2839. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  2840. The following Ruby script adds ``http://localhost/aria2.tar.bz2`` to
  2841. aria2c (running on localhost) with option :option:`--dir=/downloads <-d>` and
  2842. prints the RPC response:
  2843. .. code-block:: ruby
  2844. #!/usr/bin/env ruby
  2845. require 'xmlrpc/client'
  2846. require 'pp'
  2847. client=XMLRPC::Client.new2("http://localhost:6800/rpc")
  2848. options={ "dir" => "/downloads" }
  2849. result=client.call("aria2.addUri", [ "http://localhost/aria2.tar.bz2" ], options)
  2850. pp result
  2851. If you are a Python lover, you can use xmlrpclib (Python3 uses
  2852. xmlrpc.client instead) to interact with aria2::
  2853. import xmlrpclib
  2854. from pprint import pprint
  2855. s = xmlrpclib.ServerProxy("http://localhost:6800/rpc")
  2856. r = s.aria2.addUri(["http://localhost/aria2.tar.bz2"], {"dir":"/downloads"})
  2857. pprint(r)
  2858. MISC
  2859. ----
  2860. Console Readout
  2861. ~~~~~~~~~~~~~~~
  2862. While downloading files, aria2 prints a readout to the console to show the
  2863. progress of the downloads. The console readout looks like this::
  2864. [#2089b0 400.0KiB/33.2MiB(1%) CN:1 DL:115.7KiB ETA:4m51s]
  2865. This section describes what these numbers and strings mean.
  2866. ``#NNNNNN``
  2867. The first 6 characters of the GID as a hex string. The GID is an unique ID for
  2868. each download, internal to aria2. The GID is particularly useful when
  2869. interacting with aria2 using the RPC interface.
  2870. ``X/Y(Z%)``
  2871. Completed length, the total file length and its progress. If
  2872. :option:`--select-file` is used, this is the sum of selected files.
  2873. ``SEED``
  2874. Share ratio when the aria2 is seeding a finished torrent.
  2875. ``CN``
  2876. The number of connections aria2 has established.
  2877. ``SD``
  2878. The number of seeders aria2 is connected to.
  2879. ``DL``
  2880. Download speed (bytes per second).
  2881. ``UL``
  2882. Upload speed (bytes per second) and the number of uploaded bytes.
  2883. ``ETA``
  2884. Expected time to finish the download.
  2885. When more than one download is in progress, some of the information
  2886. described above will be omitted in order to show information for several
  2887. downloads. And the overall download and upload speeds are shown at
  2888. the beginning of the line.
  2889. When aria2 is allocating file space or validating checksums, it
  2890. additionally prints the progress of these operations:
  2891. FileAlloc
  2892. GID, already allocated length and total length in bytes.
  2893. Checksum
  2894. GID, already validated length and total length in bytes.
  2895. EXAMPLE
  2896. -------
  2897. HTTP/FTP Segmented Downloads
  2898. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2899. Download a file
  2900. ^^^^^^^^^^^^^^^
  2901. .. code-block:: console
  2902. $ aria2c "http://host/file.zip"
  2903. .. note::
  2904. To stop a download, press :kbd:`Ctrl-C`. You can resume the transfer by
  2905. running aria2c with the same argument in the same directory. You can change
  2906. URIs as long as they are pointing to the same file.
  2907. Download a file from two different HTTP servers
  2908. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2909. .. code-block:: console
  2910. $ aria2c "http://host/file.zip" "http://mirror/file.zip"
  2911. Download a file from one host using multiple connections
  2912. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2913. .. code-block:: console
  2914. $ aria2c -x2 -k1M "http://host/file.zip"
  2915. .. note::
  2916. The -x option specified the number of allowed connections, while the -k option
  2917. specified the size of chunks.
  2918. Download a file from HTTP and FTP servers at the same time
  2919. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2920. .. code-block:: console
  2921. $ aria2c "http://host1/file.zip" "ftp://host2/file.zip"
  2922. Download files listed in a text file concurrently
  2923. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2924. .. code-block:: console
  2925. $ aria2c -ifiles.txt -j2
  2926. .. note::
  2927. -j option specifies the number of parallel downloads.
  2928. Using a proxy
  2929. ^^^^^^^^^^^^^
  2930. For HTTP:
  2931. .. code-block:: console
  2932. $ aria2c --http-proxy="http://proxy:8080" "http://host/file"
  2933. .. code-block:: console
  2934. $ aria2c --http-proxy="http://proxy:8080" --no-proxy="localhost,127.0.0.1,192.168.0.0/16" "http://host/file"
  2935. For FTP:
  2936. .. code-block:: console
  2937. $ aria2c --ftp-proxy="http://proxy:8080" "ftp://host/file"
  2938. .. note::
  2939. See :option:`--http-proxy`, :option:`--https-proxy`, :option:`--ftp-proxy`,
  2940. :option:`--all-proxy` and :option:`--no-proxy` for details. You can specify
  2941. proxy in the environment variables. See `ENVIRONMENT`_ section.
  2942. Using a Proxy with authorization
  2943. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2944. .. code-block:: console
  2945. $ aria2c --http-proxy="http://username:password@proxy:8080" "http://host/file"
  2946. .. code-block:: console
  2947. $ aria2c --http-proxy="http://proxy:8080" --http-proxy-user="username" --http-proxy-passwd="password" "http://host/file"
  2948. Metalink Download
  2949. ~~~~~~~~~~~~~~~~~
  2950. Download files with remote Metalink
  2951. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2952. .. code-block:: console
  2953. $ aria2c --follow-metalink=mem "http://host/file.metalink"
  2954. Download using a local metalink file
  2955. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2956. .. code-block:: console
  2957. $ aria2c -p --lowest-speed-limit=4000 file.metalink
  2958. .. note::
  2959. To stop a download, press :kbd:`Ctrl-C`.
  2960. You can resume the transfer by running aria2c with the same argument in the same
  2961. directory.
  2962. Download several local metalink files
  2963. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2964. .. code-block:: console
  2965. $ aria2c -j2 file1.metalink file2.metalink
  2966. Download only selected files
  2967. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2968. .. code-block:: console
  2969. $ aria2c --select-file=1-4,8 file.metalink
  2970. .. note::
  2971. The index is printed to the console using -S option.
  2972. Download a file using a local metalink file with user preference
  2973. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2974. .. code-block:: console
  2975. $ aria2c --metalink-location=jp,us --metalink-version=1.1 --metalink-language=en-US file.metalink
  2976. BitTorrent Download
  2977. ~~~~~~~~~~~~~~~~~~~
  2978. Download files using a remote BitTorrent file
  2979. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2980. .. code-block:: console
  2981. $ aria2c --follow-torrent=mem "http://host/file.torrent"
  2982. Download using a local torrent file
  2983. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2984. .. code-block:: console
  2985. $ aria2c --max-upload-limit=40K file.torrent
  2986. .. note::
  2987. --max-upload-limit specifies the max of upload rate.
  2988. .. note::
  2989. To stop a download, press :kbd:`Ctrl-C`. You can resume the transfer later by
  2990. running aria2c with the same argument in the same directory.
  2991. Download using BitTorrent Magnet URI
  2992. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2993. .. code-block:: console
  2994. $ aria2c "magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C&dn=aria2"
  2995. .. note::
  2996. Don't forget to quote BitTorrent Magnet URIs which include ``&``
  2997. characters with single(``'``) or double(``"``) quotes when specifying URIs on
  2998. the command-line.
  2999. Download 2 torrents
  3000. ^^^^^^^^^^^^^^^^^^^
  3001. .. code-block:: console
  3002. $ aria2c -j2 file1.torrent file2.torrent
  3003. Download a file via torrent and HTTP/FTP server in parallel
  3004. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3005. .. code-block:: console
  3006. $ aria2c -Ttest.torrent "http://host1/file" "ftp://host2/file"
  3007. .. note::
  3008. Downloading a multi-file torrent while also using HTTP/FTP is not supported.
  3009. Only download specific files (usually called "selected download")
  3010. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3011. .. code-block:: console
  3012. $ aria2c --select-file=1-4,8 file.torrent
  3013. .. note::
  3014. The index is printed to the console using -S option.
  3015. Download a .torrent file, but do not download the torrent
  3016. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3017. .. code-block:: console
  3018. $ aria2c --follow-torrent=false "http://host/file.torrent"
  3019. Specify the output file name
  3020. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3021. To specify the output file name for BitTorrent downloads, you need to know
  3022. the index of file in the torrent (see :option:`--show-files <-S>`). For
  3023. example, the output looks like this::
  3024. idx|path/length
  3025. ===+======================
  3026. 1|dist/base-2.6.18.iso
  3027. |99.9MiB
  3028. ---+----------------------
  3029. 2|dist/driver-2.6.18.iso
  3030. |169.0MiB
  3031. ---+----------------------
  3032. To save 'dist/base-2.6.18.iso' in '/tmp/mydir/base.iso' and
  3033. 'dist/driver-2.6.18.iso' in '/tmp/dir/driver.iso', use the following
  3034. command:
  3035. .. code-block:: console
  3036. $ aria2c --dir=/tmp --index-out=1=mydir/base.iso --index-out=2=dir/driver.iso file.torrent
  3037. Change the listening ports for incoming peer connections
  3038. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3039. .. code-block:: console
  3040. $ aria2c --listen-port=7000-7001,8000 file.torrent
  3041. .. note::
  3042. Since aria2 doesn't configure firewalls or routers for port forwarding, it's
  3043. up to you to do so manually.
  3044. Specify conditions to stop seeding after torrent downloads finish
  3045. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3046. .. code-block:: console
  3047. $ aria2c --seed-time=120 --seed-ratio=1.0 file.torrent
  3048. .. note::
  3049. In the above example, the program stops seeding after 120 minutes since
  3050. download completed or seed ratio reaches 1.0.
  3051. Throttle upload speed
  3052. ^^^^^^^^^^^^^^^^^^^^^
  3053. .. code-block:: console
  3054. $ aria2c --max-upload-limit=100K file.torrent
  3055. Enable IPv4 DHT
  3056. ^^^^^^^^^^^^^^^
  3057. .. code-block:: console
  3058. $ aria2c --enable-dht --dht-listen-port=6881 file.torrent
  3059. .. note::
  3060. DHT uses UDP. Since aria2 doesn't configure firewalls or routers for port
  3061. forwarding, it's up to you to do it manually.
  3062. Enable IPv6 DHT
  3063. ^^^^^^^^^^^^^^^
  3064. .. code-block:: console
  3065. $ aria2c --enable-dht6 --dht-listen-port=6881 --dht-listen-addr6=YOUR_GLOBAL_UNICAST_IPV6_ADDR
  3066. .. note::
  3067. aria2 uses the same ports as IPv4 for IPv6.
  3068. Add and remove tracker URIs
  3069. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3070. Ignore all tracker announce URIs defined in file.torrent and use
  3071. ``http://tracker1/announce`` and ``http://tracker2/announce`` instead:
  3072. .. code-block:: console
  3073. $ aria2c --bt-exclude-tracker="*" --bt-tracker="http://tracker1/announce,http://tracker2/announce" file.torrent
  3074. More advanced HTTP features
  3075. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3076. Load cookies
  3077. ^^^^^^^^^^^^
  3078. .. code-block:: console
  3079. $ aria2c --load-cookies=cookies.txt "http://host/file.zip"
  3080. .. note::
  3081. You can use Firefox/Mozilla/Chromium's cookie files without modification.
  3082. Resume download started by web browsers or other programs
  3083. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3084. .. code-block:: console
  3085. $ aria2c -c -s2 "http://host/partiallydownloadedfile.zip"
  3086. .. note::
  3087. This will only work when the initial download was not multi-segmented.
  3088. Client certificate authorization for SSL/TLS
  3089. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3090. Specify a PKCS12 file as follows:
  3091. .. code-block:: console
  3092. $ aria2c --certificate=/path/to/mycert.p12
  3093. .. note::
  3094. The file specified in :option:`--certificate` must be contain one PKCS12 encoded
  3095. certificate and key. The password must be blank.
  3096. Alternatively, if PEM files are supported, use a command like the following:
  3097. .. code-block:: console
  3098. $ aria2c --certificate=/path/to/mycert.pem --private-key=/path/to/mykey.pem https://host/file
  3099. .. note::
  3100. The file specified in :option:`--private-key` must be decrypted. The behavior when
  3101. encrypted one is given is undefined.
  3102. Verify SSL/TLS servers using given CA certificates
  3103. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3104. .. code-block:: console
  3105. $ aria2c --ca-certificate=/path/to/ca-certificates.crt --check-certificate https://host/file
  3106. .. note::
  3107. This option is only available when aria2 was compiled against GnuTLS or
  3108. OpenSSL.
  3109. WinTLS and AppleTLS will always use the system certificate store. Instead of
  3110. ```--ca-certificate`` install the certificate in that store.
  3111. RPC
  3112. ~~~
  3113. Encrypt RPC traffic with SSL/TLS
  3114. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3115. Specify a server PKC12 file:
  3116. .. code-block:: console
  3117. $ aria2c --enable-rpc --rpc-certificate=/path/to/server.p12 --rpc-secure
  3118. .. note::
  3119. The file specified in :option:`--rpc-certificate` must be contain one PKCS12
  3120. encoded certificate and key. The password must be blank.
  3121. Alternatively, when PEM files are supported (GnuTLS and OpenSSL), specify the
  3122. server certificate file and private key file as follows:
  3123. .. code-block:: console
  3124. $ aria2c --enable-rpc --rpc-certificate=/path/to/server.crt --rpc-private-key=/path/to/server.key --rpc-secure
  3125. And more advanced features
  3126. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  3127. Throttle the download speed
  3128. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3129. Per-download:
  3130. .. code-block:: console
  3131. $ aria2c --max-download-limit=100K file.metalink
  3132. Overall:
  3133. .. code-block:: console
  3134. $ aria2c --max-overall-download-limit=100K file.metalink
  3135. Repair a damaged download
  3136. ^^^^^^^^^^^^^^^^^^^^^^^^^
  3137. .. code-block:: console
  3138. $ aria2c -V file.metalink
  3139. .. note::
  3140. Repairing damaged downloads can be done efficiently when used with
  3141. BitTorrent or Metalink with chunk checksums.
  3142. Drop connections if download speed is lower than a specified limit
  3143. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3144. .. code-block:: console
  3145. $ aria2c --lowest-speed-limit=10K file.metalink
  3146. Parameterized URI support
  3147. ^^^^^^^^^^^^^^^^^^^^^^^^^
  3148. You can specify set of parts:
  3149. .. code-block:: console
  3150. $ aria2c -P "http://{host1,host2,host3}/file.iso"
  3151. You can specify numeric sequence:
  3152. .. code-block:: console
  3153. $ aria2c -Z -P "http://host/image[000-100].png"
  3154. .. note::
  3155. The -Z option is required if the URIs don't point to the same file, such as in
  3156. the above example.
  3157. You can specify step counter:
  3158. .. code-block:: console
  3159. $ aria2c -Z -P "http://host/image[A-Z:2].png"
  3160. Verifying checksums
  3161. ^^^^^^^^^^^^^^^^^^^
  3162. .. code-block:: console
  3163. $ aria2c --checksum=sha-1=0192ba11326fe2298c8cb4de616f4d4140213837 http://example.org/file
  3164. Parallel downloads of an arbitrary number of URIs, metalink, torrent
  3165. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3166. .. code-block:: console
  3167. $ aria2c -j3 -Z "http://host/file1" file2.torrent file3.metalink
  3168. BitTorrent Encryption
  3169. ^^^^^^^^^^^^^^^^^^^^^
  3170. Encrypt the whole payload using ARC4 (obfuscation):
  3171. .. code-block:: console
  3172. $ aria2c --bt-min-crypto-level=arc4 --bt-require-crypto=true file.torrent
  3173. SEE ALSO
  3174. --------
  3175. Project Web Site: https://aria2.github.io/
  3176. Metalink Homepage: http://www.metalinker.org/
  3177. The Metalink Download Description Format: :rfc:`5854`
  3178. COPYRIGHT
  3179. ---------
  3180. Copyright (C) 2006, 2015 Tatsuhiro Tsujikawa
  3181. This program is free software; you can redistribute it and/or modify
  3182. it under the terms of the GNU General Public License as published by
  3183. the Free Software Foundation; either version 2 of the License, or
  3184. (at your option) any later version.
  3185. This program is distributed in the hope that it will be useful,
  3186. but WITHOUT ANY WARRANTY; without even the implied warranty of
  3187. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  3188. GNU General Public License for more details.
  3189. You should have received a copy of the GNU General Public License
  3190. along with this program; if not, write to the Free Software
  3191. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  3192. In addition, as a special exception, the copyright holders give
  3193. permission to link the code of portions of this program with the
  3194. OpenSSL library under certain conditions as described in each
  3195. individual source file, and distribute linked combinations
  3196. including the two.
  3197. You must obey the GNU General Public License in all respects
  3198. for all of the code used other than OpenSSL. If you modify
  3199. file(s) with this exception, you may extend this exception to your
  3200. version of the file(s), but you are not obligated to do so. If you
  3201. do not wish to do so, delete this exception statement from your
  3202. version. If you delete this exception statement from all source
  3203. files in the program, then also delete it here.