aria2c.1.html 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  2. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="generator" content="AsciiDoc 8.2.7" />
  7. <style type="text/css">
  8. /* Debug borders */
  9. p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
  10. /*
  11. border: 1px solid red;
  12. */
  13. }
  14. body {
  15. margin: 1em 5% 1em 5%;
  16. }
  17. a {
  18. color: blue;
  19. text-decoration: underline;
  20. }
  21. a:visited {
  22. color: fuchsia;
  23. }
  24. em {
  25. font-style: italic;
  26. color: navy;
  27. }
  28. strong {
  29. font-weight: bold;
  30. color: #083194;
  31. }
  32. tt {
  33. color: navy;
  34. }
  35. h1, h2, h3, h4, h5, h6 {
  36. color: #527bbd;
  37. font-family: sans-serif;
  38. margin-top: 1.2em;
  39. margin-bottom: 0.5em;
  40. line-height: 1.3;
  41. }
  42. h1, h2, h3 {
  43. border-bottom: 2px solid silver;
  44. }
  45. h2 {
  46. padding-top: 0.5em;
  47. }
  48. h3 {
  49. float: left;
  50. }
  51. h3 + * {
  52. clear: left;
  53. }
  54. div.sectionbody {
  55. font-family: serif;
  56. margin-left: 0;
  57. }
  58. hr {
  59. border: 1px solid silver;
  60. }
  61. p {
  62. margin-top: 0.5em;
  63. margin-bottom: 0.5em;
  64. }
  65. ul, ol, li > p {
  66. margin-top: 0;
  67. }
  68. pre {
  69. padding: 0;
  70. margin: 0;
  71. }
  72. span#author {
  73. color: #527bbd;
  74. font-family: sans-serif;
  75. font-weight: bold;
  76. font-size: 1.1em;
  77. }
  78. span#email {
  79. }
  80. span#revision {
  81. font-family: sans-serif;
  82. }
  83. div#footer {
  84. font-family: sans-serif;
  85. font-size: small;
  86. border-top: 2px solid silver;
  87. padding-top: 0.5em;
  88. margin-top: 4.0em;
  89. }
  90. div#footer-text {
  91. float: left;
  92. padding-bottom: 0.5em;
  93. }
  94. div#footer-badges {
  95. float: right;
  96. padding-bottom: 0.5em;
  97. }
  98. div#preamble,
  99. div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
  100. div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
  101. div.admonitionblock {
  102. margin-right: 10%;
  103. margin-top: 1.5em;
  104. margin-bottom: 1.5em;
  105. }
  106. div.admonitionblock {
  107. margin-top: 2.5em;
  108. margin-bottom: 2.5em;
  109. }
  110. div.content { /* Block element content. */
  111. padding: 0;
  112. }
  113. /* Block element titles. */
  114. div.title, caption.title {
  115. color: #527bbd;
  116. font-family: sans-serif;
  117. font-weight: bold;
  118. text-align: left;
  119. margin-top: 1.0em;
  120. margin-bottom: 0.5em;
  121. }
  122. div.title + * {
  123. margin-top: 0;
  124. }
  125. td div.title:first-child {
  126. margin-top: 0.0em;
  127. }
  128. div.content div.title:first-child {
  129. margin-top: 0.0em;
  130. }
  131. div.content + div.title {
  132. margin-top: 0.0em;
  133. }
  134. div.sidebarblock > div.content {
  135. background: #ffffee;
  136. border: 1px solid silver;
  137. padding: 0.5em;
  138. }
  139. div.listingblock {
  140. margin-right: 0%;
  141. }
  142. div.listingblock > div.content {
  143. border: 1px solid silver;
  144. background: #f4f4f4;
  145. padding: 0.5em;
  146. }
  147. div.quoteblock {
  148. padding-left: 2.0em;
  149. }
  150. div.quoteblock > div.attribution {
  151. padding-top: 0.5em;
  152. text-align: right;
  153. }
  154. div.verseblock {
  155. padding-left: 2.0em;
  156. }
  157. div.verseblock > div.content {
  158. white-space: pre;
  159. }
  160. div.verseblock > div.attribution {
  161. padding-top: 0.75em;
  162. text-align: left;
  163. }
  164. /* DEPRECATED: Pre version 8.2.7 verse style literal block. */
  165. div.verseblock + div.attribution {
  166. text-align: left;
  167. }
  168. div.admonitionblock .icon {
  169. vertical-align: top;
  170. font-size: 1.1em;
  171. font-weight: bold;
  172. text-decoration: underline;
  173. color: #527bbd;
  174. padding-right: 0.5em;
  175. }
  176. div.admonitionblock td.content {
  177. padding-left: 0.5em;
  178. border-left: 2px solid silver;
  179. }
  180. div.exampleblock > div.content {
  181. border-left: 2px solid silver;
  182. padding: 0.5em;
  183. }
  184. div.imageblock div.content { padding-left: 0; }
  185. div.imageblock img { border: 1px solid silver; }
  186. span.image img { border-style: none; }
  187. dl {
  188. margin-top: 0.8em;
  189. margin-bottom: 0.8em;
  190. }
  191. dt {
  192. margin-top: 0.5em;
  193. margin-bottom: 0;
  194. font-style: normal;
  195. }
  196. dd > *:first-child {
  197. margin-top: 0.1em;
  198. }
  199. ul, ol {
  200. list-style-position: outside;
  201. }
  202. div.olist > ol {
  203. list-style-type: decimal;
  204. }
  205. div.olist2 > ol {
  206. list-style-type: lower-alpha;
  207. }
  208. div.tableblock > table {
  209. border: 3px solid #527bbd;
  210. }
  211. thead {
  212. font-family: sans-serif;
  213. font-weight: bold;
  214. }
  215. tfoot {
  216. font-weight: bold;
  217. }
  218. div.hlist {
  219. margin-top: 0.8em;
  220. margin-bottom: 0.8em;
  221. }
  222. div.hlist td {
  223. padding-bottom: 15px;
  224. }
  225. td.hlist1 {
  226. vertical-align: top;
  227. font-style: normal;
  228. padding-right: 0.8em;
  229. }
  230. td.hlist2 {
  231. vertical-align: top;
  232. }
  233. @media print {
  234. div#footer-badges { display: none; }
  235. }
  236. div#toctitle {
  237. color: #527bbd;
  238. font-family: sans-serif;
  239. font-size: 1.1em;
  240. font-weight: bold;
  241. margin-top: 1.0em;
  242. margin-bottom: 0.1em;
  243. }
  244. div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
  245. margin-top: 0;
  246. margin-bottom: 0;
  247. }
  248. div.toclevel2 {
  249. margin-left: 2em;
  250. font-size: 0.9em;
  251. }
  252. div.toclevel3 {
  253. margin-left: 4em;
  254. font-size: 0.9em;
  255. }
  256. div.toclevel4 {
  257. margin-left: 6em;
  258. font-size: 0.9em;
  259. }
  260. /* Overrides for manpage documents */
  261. h1 {
  262. padding-top: 0.5em;
  263. padding-bottom: 0.5em;
  264. border-top: 2px solid silver;
  265. border-bottom: 2px solid silver;
  266. }
  267. h2 {
  268. border-style: none;
  269. }
  270. div.sectionbody {
  271. margin-left: 5%;
  272. }
  273. @media print {
  274. div#toc { display: none; }
  275. }
  276. /* Workarounds for IE6's broken and incomplete CSS2. */
  277. div.sidebar-content {
  278. background: #ffffee;
  279. border: 1px solid silver;
  280. padding: 0.5em;
  281. }
  282. div.sidebar-title, div.image-title {
  283. color: #527bbd;
  284. font-family: sans-serif;
  285. font-weight: bold;
  286. margin-top: 0.0em;
  287. margin-bottom: 0.5em;
  288. }
  289. div.listingblock div.content {
  290. border: 1px solid silver;
  291. background: #f4f4f4;
  292. padding: 0.5em;
  293. }
  294. div.quoteblock-attribution {
  295. padding-top: 0.5em;
  296. text-align: right;
  297. }
  298. div.verseblock-content {
  299. white-space: pre;
  300. }
  301. div.verseblock-attribution {
  302. padding-top: 0.75em;
  303. text-align: left;
  304. }
  305. div.exampleblock-content {
  306. border-left: 2px solid silver;
  307. padding-left: 0.5em;
  308. }
  309. /* IE6 sets dynamically generated links as visited. */
  310. div#toc a:visited { color: blue; }
  311. /* Because IE6 child selector is broken. */
  312. div.olist2 ol {
  313. list-style-type: lower-alpha;
  314. }
  315. div.olist2 div.olist ol {
  316. list-style-type: decimal;
  317. }
  318. </style>
  319. <title>ARIA2C(1)</title>
  320. </head>
  321. <body>
  322. <div id="header">
  323. <h1>
  324. ARIA2C(1) Manual Page
  325. </h1>
  326. <h2>NAME</h2>
  327. <div class="sectionbody">
  328. <p>aria2c -
  329. The ultra fast download utility
  330. </p>
  331. </div>
  332. </div>
  333. <h2>SYNOPSIS</h2>
  334. <div class="sectionbody">
  335. <div class="para"><p>aria2c [<em>OPTIONS</em>] [<em>URL</em> | <em>TORRENT_FILE</em> | <em>METALINK_FILE</em>]&#8230;</p></div>
  336. </div>
  337. <h2 id="_description">DESCRIPTION</h2>
  338. <div class="sectionbody">
  339. <div class="para"><p>aria2 is a utility for downloading files. The supported protocols are HTTP(S), FTP, BitTorrent, and Metalink. It can download a file from multiple sources/protocols and tries to utilize your maximum download bandwidth. It supports downloading a file from HTTP(S)/FTP and BitTorrent at the same time, while the data downloaded from HTTP(S)/FTP is uploaded to the BitTorrent swarm. Using Metalink's chunk checksums, aria2 automatically validates chunks of data while downloading a file like BitTorrent.</p></div>
  340. </div>
  341. <h2 id="_options">OPTIONS</h2>
  342. <div class="sectionbody">
  343. <h3 id="_basic_options">Basic Options</h3><div style="clear:left"></div>
  344. <div class="vlist"><dl>
  345. <dt>
  346. <strong>-d</strong>, <strong>--dir</strong>=DIR
  347. </dt>
  348. <dd>
  349. <p>
  350. The directory to store the downloaded file.
  351. </p>
  352. </dd>
  353. <dt>
  354. <strong>-i</strong>, <strong>--input-file</strong>=FILE
  355. </dt>
  356. <dd>
  357. <p>
  358. Downloads URIs found in FILE. You can specify multiple URIs for a single
  359. entity: separate URIs on a single line using the TAB character.
  360. Reads input from stdin when <em>-</em> is specified.
  361. </p>
  362. </dd>
  363. <dt>
  364. <strong>-l</strong>, <strong>--log</strong>=LOG
  365. </dt>
  366. <dd>
  367. <p>
  368. The file name of the log file. If <em>-</em> is specified, log is written to
  369. stdout.
  370. </p>
  371. </dd>
  372. <dt>
  373. <strong>-j</strong>, <strong>--max-concurrent-downloads</strong>=N
  374. </dt>
  375. <dd>
  376. <p>
  377. Set maximum number of parallel downloads for every static (HTTP/FTP) URL,
  378. torrent and metalink.
  379. Default: <em>5</em>
  380. </p>
  381. </dd>
  382. <dt>
  383. <strong>--check-integrity</strong>=<em>true</em>|<em>false</em>
  384. </dt>
  385. <dd>
  386. <p>
  387. Check file integrity by validating piece hash.
  388. This option only affects in BitTorrent downloads and Metalink downloads with
  389. chunk checksums.
  390. Use this option to re-download a damaged portion of a file.
  391. Default: <em>false</em>
  392. </p>
  393. </dd>
  394. <dt>
  395. <strong>-c</strong>, <strong>--continue</strong>
  396. </dt>
  397. <dd>
  398. <p>
  399. Continue downloading a partially downloaded file.
  400. Use this option to resume a download started by a web browser or another
  401. program which downloads files sequentially from the beginning.
  402. Currently this option is only applicable to HTTP(S)/FTP downloads.
  403. </p>
  404. </dd>
  405. <dt>
  406. <strong>-h</strong>, <strong>--help</strong>[=CATEGORY]
  407. </dt>
  408. <dd>
  409. <p>
  410. Print usage and exit.
  411. The help messages are classified in several categories.
  412. For example, type "<strong>--help</strong>=http" for detailed explanation for the options
  413. related to HTTP. If no matching category is found, search option name using
  414. a given word in middle match and print the result.
  415. Available Values: <em>basic</em>, <em>advanced</em>, <em>http</em>, <em>ftp</em>, <em>metalink</em>,
  416. <em>bittorrent</em>, <em>all</em>
  417. Default: <em>basic</em>
  418. </p>
  419. </dd>
  420. </dl></div>
  421. <h3 id="_http_ftp_options">HTTP/FTP Options</h3><div style="clear:left"></div>
  422. <div class="vlist"><dl>
  423. <dt>
  424. <strong>--connect-timeout</strong>=SEC
  425. </dt>
  426. <dd>
  427. <p>
  428. Set the connect timeout in seconds to establish connection to
  429. HTTP/FTP/proxy server. After the connection is established, this
  430. option makes no effect and <strong>--timeout</strong> option is used instead.
  431. Default: <em>60</em>
  432. </p>
  433. </dd>
  434. <dt>
  435. <strong>--lowest-speed-limit</strong>=SPEED
  436. </dt>
  437. <dd>
  438. <p>
  439. Close connection if download speed is lower than or equal to this
  440. value(bytes per sec).
  441. <em>0</em> means aria2 does not have a lowest speed limit.
  442. You can append <em>K</em> or <em>M</em>(1K = 1024, 1M = 1024K).
  443. This option does not affect BitTorrent downloads.
  444. Default: <em>0</em>
  445. </p>
  446. </dd>
  447. <dt>
  448. <strong>--max-file-not-found</strong>=NUM
  449. </dt>
  450. <dd>
  451. <p>
  452. If aria2 recieves `file not found' status from the remote HTTP/FTP
  453. servers NUM times without getting a single byte, then force the
  454. download to fail. Specify <em>0</em> to disable this option. This options is
  455. only effective only when using HTTP/FTP servers.
  456. Default: <em>0</em>
  457. </p>
  458. </dd>
  459. <dt>
  460. <strong>-m</strong>, <strong>--max-tries</strong>=N
  461. </dt>
  462. <dd>
  463. <p>
  464. Set number of tries. <em>0</em> means unlimited.
  465. Default: <em>5</em>
  466. </p>
  467. </dd>
  468. <dt>
  469. <strong>-o</strong>, <strong>--out</strong>=FILE
  470. </dt>
  471. <dd>
  472. <p>
  473. The file name of the downloaded file.
  474. </p>
  475. </dd>
  476. </dl></div>
  477. <div class="admonitionblock">
  478. <table><tr>
  479. <td class="icon">
  480. <div class="title">Note</div>
  481. </td>
  482. <td class="content">In Metalink, BitTorrent download you cannot specify file name.
  483. The file name specified here is only used when the URLs fed to aria2
  484. is done by command line without <strong>-i</strong>, <strong>-Z</strong> option, like this:
  485. aria2c -o myfile.zip <a href="http://mirror1/file.zip">http://mirror1/file.zip</a> <a href="http://mirror2/file.zip">http://mirror2/file.zip</a></td>
  486. </tr></table>
  487. </div>
  488. <div class="vlist"><dl>
  489. <dt>
  490. <strong>-R</strong>, <strong>--remote-time</strong>[=<em>true</em>|<em>false</em>]
  491. </dt>
  492. <dd>
  493. <p>
  494. Retrieve timestamp of the remote file from the remote HTTP/FTP
  495. server and if it is available, apply it to the local file.
  496. Default: <em>false</em>
  497. </p>
  498. </dd>
  499. <dt>
  500. <strong>--retry-wait</strong>=SEC
  501. </dt>
  502. <dd>
  503. <p>
  504. Set the seconds to wait to retry after an error has occured.
  505. Specify a value between <em>0</em> and <em>60</em>.
  506. Default: <em>5</em>
  507. </p>
  508. </dd>
  509. <dt>
  510. <strong>--server-stat-of</strong>=FILE
  511. </dt>
  512. <dd>
  513. <p>
  514. Specify the filename to which performance profile of the servers is
  515. saved. You can load saved data using <strong>--server-stat-if</strong> option. See
  516. SERVER PERFORMANCE PROFILE section below for file format.
  517. </p>
  518. </dd>
  519. <dt>
  520. <strong>--server-stat-if</strong>=FILE
  521. </dt>
  522. <dd>
  523. <p>
  524. Specify the filename to load performance profile of the servers. The
  525. loaded data will be used in some URI selector such as <em>feedback</em>.
  526. See also <strong>--uri-selector</strong> option. See SERVER PERFORMANCE PROFILE
  527. section below for file format.
  528. </p>
  529. </dd>
  530. <dt>
  531. <strong>--server-stat-timeout</strong>=SEC
  532. </dt>
  533. <dd>
  534. <p>
  535. Specifies timeout in seconds to invalidate performance profile of
  536. the servers since the last contact to them.
  537. Default: <em>86400</em> (24hours)
  538. </p>
  539. </dd>
  540. <dt>
  541. <strong>-s</strong>, <strong>--split</strong>=N
  542. </dt>
  543. <dd>
  544. <p>
  545. Download a file using N connections.
  546. If more than N URLs are given, first N URLs are used and remaining URLs are
  547. used for backup.
  548. If less than N URLs are given, those URLs are used more than once so that N
  549. connections total are made simultaneously.
  550. N must be between <em>1</em> and <em>16</em>. Please see <strong>-j</strong> option too.
  551. Default: <em>5</em>
  552. </p>
  553. </dd>
  554. <dt>
  555. <strong>-t</strong>, <strong>--timeout</strong>=SEC
  556. </dt>
  557. <dd>
  558. <p>
  559. Set timeout in seconds.
  560. Default: <em>60</em>
  561. </p>
  562. </dd>
  563. <dt>
  564. <strong>--uri-selector</strong>=SELECTOR
  565. </dt>
  566. <dd>
  567. <p>
  568. Specify URI selection algorithm. Possible values are <em>inorder</em> and
  569. <em>feedback</em>. If <em>inorder</em> is given, URI is tried in the order
  570. appeared in the URI list. If <em>feedback</em> is given, aria2 uses
  571. download speed observed in the previous downloads and choose fastest
  572. server in the URI list. This also effectively skips dead
  573. mirrors. The observed download speed is a part of performance
  574. profile of servers mentioned in <strong>--server-stat-of</strong> and
  575. <strong>--server-stat-if</strong> options.
  576. Default: <em>inorder</em>
  577. </p>
  578. </dd>
  579. </dl></div>
  580. <h3 id="_http_specific_options">HTTP Specific Options</h3><div style="clear:left"></div>
  581. <div class="vlist"><dl>
  582. <dt>
  583. <strong>--http-auth-scheme</strong>=SCHEME
  584. </dt>
  585. <dd>
  586. <p>
  587. Set HTTP authentication scheme.
  588. Currently, <em>basic</em> is the only supported scheme.
  589. Default: <em>basic</em>
  590. </p>
  591. </dd>
  592. <dt>
  593. <strong>--http-user</strong>=USER
  594. </dt>
  595. <dd>
  596. <p>
  597. Set HTTP user. This affects all URLs.
  598. </p>
  599. </dd>
  600. <dt>
  601. <strong>--http-passwd</strong>=PASSWD
  602. </dt>
  603. <dd>
  604. <p>
  605. Set HTTP password. This affects all URLs.
  606. </p>
  607. </dd>
  608. <dt>
  609. <strong>--http-proxy</strong>=HOST:PORT
  610. </dt>
  611. <dd>
  612. <p>
  613. Use HTTP proxy server. This affects all URLs.
  614. </p>
  615. </dd>
  616. <dt>
  617. <strong>--http-proxy-user</strong>=USER
  618. </dt>
  619. <dd>
  620. <p>
  621. Set HTTP proxy user. This affects all URLs.
  622. </p>
  623. </dd>
  624. <dt>
  625. <strong>--http-proxy-passwd</strong>=PASSWD
  626. </dt>
  627. <dd>
  628. <p>
  629. Set HTTP proxy password. This affects all URLs.
  630. </p>
  631. </dd>
  632. <dt>
  633. <strong>--http-proxy-method</strong>=METHOD
  634. </dt>
  635. <dd>
  636. <p>
  637. Set the method to use in proxy request.
  638. <em>METHOD</em> is either <em>get</em> or <em>tunnel</em>.
  639. Default: <em>tunnel</em>
  640. </p>
  641. </dd>
  642. <dt>
  643. <strong>--referer</strong>=REFERER
  644. </dt>
  645. <dd>
  646. <p>
  647. Set Referer. This affects all URLs.
  648. </p>
  649. </dd>
  650. <dt>
  651. <strong>--enable-http-keep-alive</strong>[=<em>true</em>|<em>false</em>]
  652. </dt>
  653. <dd>
  654. <p>
  655. Enable HTTP/1.1 persistent connection.
  656. Default: <em>true</em>
  657. </p>
  658. </dd>
  659. <dt>
  660. <strong>--enable-http-pipelining</strong>[=<em>true</em>|<em>false</em>]
  661. </dt>
  662. <dd>
  663. <p>
  664. Enable HTTP/1.1 pipelining.
  665. Default: <em>false</em>
  666. </p>
  667. </dd>
  668. <dt>
  669. <strong>--header</strong>=HEADER
  670. </dt>
  671. <dd>
  672. <p>
  673. Append HEADER to HTTP request header.
  674. You can use this option repeatedly to specify more than one header:
  675. aria2c <strong>--header</strong>="X-A: b78" <strong>--header</strong>="X-B: 9J1" <a href="http://host/file">http://host/file</a>
  676. </p>
  677. </dd>
  678. <dt>
  679. <strong>--load-cookies</strong>=FILE
  680. </dt>
  681. <dd>
  682. <p>
  683. Load Cookies from FILE using the Firefox3 format(SQLite3) and the
  684. Mozilla/Firefox(1.x/2.x)/Netscape format.
  685. </p>
  686. </dd>
  687. </dl></div>
  688. <div class="admonitionblock">
  689. <table><tr>
  690. <td class="icon">
  691. <div class="title">Note</div>
  692. </td>
  693. <td class="content">If aria2 is build without libsqlite3, then it doesn't support Firefox3 cookie.</td>
  694. </tr></table>
  695. </div>
  696. <div class="vlist"><dl>
  697. <dt>
  698. <strong>-U</strong>, <strong>--user-agent</strong>=USER_AGENT
  699. </dt>
  700. <dd>
  701. <p>
  702. Set user agent for HTTP(S) downloads.
  703. </p>
  704. </dd>
  705. </dl></div>
  706. <h3 id="_ftp_specific_options">FTP Specific Options</h3><div style="clear:left"></div>
  707. <div class="vlist"><dl>
  708. <dt>
  709. <strong>--ftp-user</strong>=USER
  710. </dt>
  711. <dd>
  712. <p>
  713. Set FTP user. This affects all URLs.
  714. Default: <em>anonymous</em>
  715. </p>
  716. </dd>
  717. <dt>
  718. <strong>--ftp-passwd</strong>=PASSWD
  719. </dt>
  720. <dd>
  721. <p>
  722. Set FTP password. This affects all URLs.
  723. Default: <em>ARIA2USER@</em>
  724. </p>
  725. </dd>
  726. <dt>
  727. <strong>-p</strong>, <strong>--ftp-pasv</strong>
  728. </dt>
  729. <dd>
  730. <p>
  731. Use passive mode in FTP.
  732. </p>
  733. </dd>
  734. <dt>
  735. <strong>--ftp-type</strong>=TYPE
  736. </dt>
  737. <dd>
  738. <p>
  739. Set FTP transfer type. TYPE is either <em>binary</em> or <em>ascii</em>.
  740. Default: <em>binary</em>
  741. </p>
  742. </dd>
  743. <dt>
  744. <strong>--ftp-reuse-connection</strong>[=<em>true</em>|<em>false</em>]
  745. </dt>
  746. <dd>
  747. <p>
  748. Reuse connection in FTP.
  749. Default: <em>true</em>
  750. </p>
  751. </dd>
  752. <dt>
  753. <strong>--ftp-via-http-proxy</strong>=METHOD
  754. </dt>
  755. <dd>
  756. <p>
  757. Use HTTP proxy in FTP. METHOD is either <em>get</em> or <em>tunnel</em>.
  758. Default: <em>tunnel</em>
  759. </p>
  760. </dd>
  761. <dt>
  762. <strong>-n</strong>, <strong>--no-netrc</strong>
  763. </dt>
  764. <dd>
  765. <p>
  766. Disables netrc support. netrc support is enabled by default.
  767. </p>
  768. </dd>
  769. </dl></div>
  770. <h3 id="_bittorrent_metalink_options">BitTorrent/Metalink Options</h3><div style="clear:left"></div>
  771. <div class="vlist"><dl>
  772. <dt>
  773. <strong>--select-file</strong>=INDEX&#8230;
  774. </dt>
  775. <dd>
  776. <p>
  777. Set file to download by specifing its index.
  778. You can find the file index using the <strong>--show-files</strong> option.
  779. Multiple indexes can be specified by using ",", for example: <em>3,6</em>.
  780. You can also use "-" to specify a range: <em>1-5</em>.
  781. "," and "-" can be used together: <em>1-5,8,9</em>.
  782. When used with the -M option, index may vary depending on the query
  783. (see <strong>--metalink-</strong>* options).
  784. </p>
  785. </dd>
  786. </dl></div>
  787. <div class="admonitionblock">
  788. <table><tr>
  789. <td class="icon">
  790. <div class="title">Note</div>
  791. </td>
  792. <td class="content">In multi file torrent, the adjacent files specified by this option may
  793. also be downloaded. This is by design, not a bug.
  794. A single piece may include several files or part of files, and aria2
  795. writes the piece to the appropriate files.</td>
  796. </tr></table>
  797. </div>
  798. <div class="vlist"><dl>
  799. <dt>
  800. <strong>-S</strong>, <strong>--show-files</strong>
  801. </dt>
  802. <dd>
  803. <p>
  804. Print file listing of .torrent or .metalink file and exit.
  805. In case of .torrent file, additional information
  806. (infohash, piece length, etc) is also printed.
  807. </p>
  808. </dd>
  809. </dl></div>
  810. <h3 id="_bittorrent_specific_options">BitTorrent Specific Options</h3><div style="clear:left"></div>
  811. <div class="vlist"><dl>
  812. <dt>
  813. <strong>--bt-max-open-files</strong>=NUM
  814. </dt>
  815. <dd>
  816. <p>
  817. Specify maximum number of files to open in each BitTorrent download.
  818. Default: <em>100</em>
  819. </p>
  820. </dd>
  821. <dt>
  822. <strong>--bt-min-crypto-level</strong>=<em>plain</em>|<em>arc4</em>
  823. </dt>
  824. <dd>
  825. <p>
  826. Set minimum level of encryption method.
  827. If several encryption methods are provided by a peer, aria2 chooses a lowest
  828. one which satisfies the given level.
  829. Default: <em>plain</em>
  830. </p>
  831. </dd>
  832. <dt>
  833. <strong>--bt-require-crypto</strong>=<em>true</em>|<em>false</em>
  834. </dt>
  835. <dd>
  836. <p>
  837. If true is given, aria2 doesn't accept and establish connection with legacy
  838. BitTorrent handshake(\19BitTorrent protocol).
  839. Thus aria2 always uses Obfuscation handshake.
  840. Default: <em>false</em>
  841. </p>
  842. </dd>
  843. <dt>
  844. <strong>--bt-request-peer-speed-limit</strong>=SPEED
  845. </dt>
  846. <dd>
  847. <p>
  848. In BitTorrent downloads, if the download speed is lower than SPEED,
  849. aria2 initiates and accepts connections ignoring max peer cap.
  850. You can append <em>K</em> or <em>M</em>(1K = 1024, 1M = 1024K).
  851. Default: <em>51200</em>
  852. </p>
  853. </dd>
  854. <dt>
  855. <strong>--bt-seed-unverified</strong>[=<em>true</em>|<em>false</em>]
  856. </dt>
  857. <dd>
  858. <p>
  859. Seed previously downloaded files without verifying piece hashes.
  860. Default: <em>false</em>
  861. </p>
  862. </dd>
  863. <dt>
  864. <strong>--dht-entry-point</strong>=HOST:PORT
  865. </dt>
  866. <dd>
  867. <p>
  868. Set host and port as an entry point to DHT network.
  869. </p>
  870. </dd>
  871. <dt>
  872. <strong>--dht-file-path</strong>=PATH
  873. </dt>
  874. <dd>
  875. <p>
  876. Change the DHT routing table file to PATH.
  877. Default: <em>$HOME/.aria2/dht.dat</em>
  878. </p>
  879. </dd>
  880. <dt>
  881. <strong>--dht-listen-port</strong>=PORT&#8230;
  882. </dt>
  883. <dd>
  884. <p>
  885. Set UDP listening port for DHT.
  886. Multiple ports can be specified by using ",", for example: <em>6881,6885</em>.
  887. You can also use "-" to specify a range: <em>6881-6999</em>. "," and "-" can be used
  888. together.
  889. Default: <em>6881-6999</em>
  890. </p>
  891. </dd>
  892. <dt>
  893. <strong>--direct-file-mapping</strong>=<em>true</em>|<em>false</em>
  894. </dt>
  895. <dd>
  896. <p>
  897. Directly read from and write to each file mentioned in .torrent file.
  898. Use this option if lots of files are listed in .torrent file and aria2
  899. complains it cannot open files anymore.
  900. Default: <em>true</em>
  901. </p>
  902. </dd>
  903. <dt>
  904. <strong>--enable-dht</strong>[=<em>true</em>|<em>false</em>]
  905. </dt>
  906. <dd>
  907. <p>
  908. Enable DHT functionality. If a private flag is set in a torrent, aria2
  909. doesn't use DHT for that download even if <em>true</em> is given.
  910. Default: <em>false</em>
  911. </p>
  912. </dd>
  913. <dt>
  914. <strong>--enable-peer-exchange</strong>[=<em>true</em>|<em>false</em>]
  915. </dt>
  916. <dd>
  917. <p>
  918. Enable Peer Exchange extension. If a private flag is set in a torrent, this
  919. feature is disabled for that download even if <em>true</em> is given.
  920. Default: <em>true</em>
  921. </p>
  922. </dd>
  923. <dt>
  924. <strong>--follow-torrent</strong>=<em>true</em>|<em>false</em>|<em>mem</em>
  925. </dt>
  926. <dd>
  927. <p>
  928. If <em>true</em> or <em>mem</em> is specified, when a file whose suffix is ".torrent" or content
  929. type is "application/x-bittorrent" is downloaded, aria2 parses it as a torrent
  930. file and downloads files mentioned in it.
  931. If <em>mem</em> is specified, a torrent file is not written to the disk, but is just
  932. kept in memory.
  933. If <em>false</em> is specified, the action mentioned above is not taken.
  934. Default: <em>true</em>
  935. </p>
  936. </dd>
  937. <dt>
  938. <strong>--listen-port</strong>=PORT&#8230;
  939. </dt>
  940. <dd>
  941. <p>
  942. Set TCP port number for BitTorrent downloads.
  943. Multiple ports can be specified by using ",", for example: <em>6881,6885</em>.
  944. You can also use "-" to specify a range: <em>6881-6999</em>.
  945. "," and "-" can be used together: <em>6881-6889,6999</em>.
  946. Default: <em>6881-6999</em>
  947. </p>
  948. </dd>
  949. </dl></div>
  950. <div class="admonitionblock">
  951. <table><tr>
  952. <td class="icon">
  953. <div class="title">Note</div>
  954. </td>
  955. <td class="content">Make sure that the specified ports are open for incoming TCP traffic.</td>
  956. </tr></table>
  957. </div>
  958. <div class="vlist"><dl>
  959. <dt>
  960. <strong>--max-upload-limit</strong>=SPEED
  961. </dt>
  962. <dd>
  963. <p>
  964. Set max upload speed in bytes per sec. <em>0</em> means unrestricted.
  965. You can append <em>K</em> or <em>M</em>(1K = 1024, 1M = 1024K).
  966. Default: <em>0</em>
  967. </p>
  968. </dd>
  969. <dt>
  970. <strong>--peer-id-prefix</strong>=PEERI_ID_PREFIX
  971. </dt>
  972. <dd>
  973. <p>
  974. Specify the prefix of peer ID. The peer ID in BitTorrent is 20 byte length.
  975. If more than 20 bytes are specified, only first 20 bytes are used.
  976. If less than 20 bytes are specified, the random alphabet characters are
  977. added to make it's length 20 bytes.
  978. Default: <em>-aria2-</em>
  979. </p>
  980. </dd>
  981. <dt>
  982. <strong>--seed-ratio</strong>=RATIO
  983. </dt>
  984. <dd>
  985. <p>
  986. Specify share ratio. Seed completed torrents until share ratio reaches]
  987. RATIO.
  988. I strongly encourages you to specify equals or more than <em>1.0</em> here.
  989. Specify <em>0.0</em> if you intend to do seeding regardless of share ratio.
  990. If <strong>--seed-time</strong> option is specified along with this option, seeding ends when
  991. at least one of the conditions is satisfied.
  992. Default: <em>1.0</em>
  993. </p>
  994. </dd>
  995. <dt>
  996. <strong>--seed-time</strong>=MINUTES
  997. </dt>
  998. <dd>
  999. <p>
  1000. Specify seeding time in minutes. Also see the <strong>--seed-ratio</strong> option.
  1001. </p>
  1002. </dd>
  1003. <dt>
  1004. <strong>-T</strong>, <strong>--torrent-file</strong>=TORRENT_FILE
  1005. </dt>
  1006. <dd>
  1007. <p>
  1008. The path to the .torrent file.
  1009. You may not use this option because you can specify torrent file without -T.
  1010. </p>
  1011. </dd>
  1012. </dl></div>
  1013. <h3 id="_metalink_specific_options">Metalink Specific Options</h3><div style="clear:left"></div>
  1014. <div class="vlist"><dl>
  1015. <dt>
  1016. <strong>--follow-metalink</strong>=<em>true</em>|<em>false</em>|<em>mem</em>
  1017. </dt>
  1018. <dd>
  1019. <p>
  1020. If <em>true</em> or <em>mem</em> is specified, when a file whose suffix is ".metaink" or content
  1021. type is "application/metalink+xml" is downloaded, aria2 parses it as a metalink
  1022. file and downloads files mentioned in it.
  1023. If <em>mem</em> is specified, a metalink file is not written to the disk, but is just
  1024. kept in memory.
  1025. If <em>false</em> is specified, the action mentioned above is not taken.
  1026. Default: <em>true</em>
  1027. </p>
  1028. </dd>
  1029. <dt>
  1030. <strong>-M</strong>, <strong>--metalink-file</strong>=METALINK_FILE
  1031. </dt>
  1032. <dd>
  1033. <p>
  1034. The file path to .metalink file. You may not use this option because you can
  1035. specify metalink file without -M.
  1036. </p>
  1037. </dd>
  1038. <dt>
  1039. <strong>-C</strong>, <strong>--metalink-servers</strong>=NUM_SERVERS
  1040. </dt>
  1041. <dd>
  1042. <p>
  1043. The number of servers to connect to simultaneously.
  1044. Some metalinks regulates the number of servers to connect.
  1045. aria2 respects them.
  1046. Default: <em>5</em>
  1047. </p>
  1048. </dd>
  1049. <dt>
  1050. <strong>--metalink-language</strong>=LANGUAGE
  1051. </dt>
  1052. <dd>
  1053. <p>
  1054. The language of the file to download.
  1055. </p>
  1056. </dd>
  1057. <dt>
  1058. <strong>--metalink-location</strong>=LOCATION[,&#8230;]
  1059. </dt>
  1060. <dd>
  1061. <p>
  1062. The location of the preferred server.
  1063. A comma-deliminated list of locations is acceptable, for example, <em>JP,US</em>.
  1064. </p>
  1065. </dd>
  1066. <dt>
  1067. <strong>--metalink-os</strong>=OS
  1068. </dt>
  1069. <dd>
  1070. <p>
  1071. The operating system of the file to download.
  1072. </p>
  1073. </dd>
  1074. <dt>
  1075. <strong>--metalink-version</strong>=VERSION
  1076. </dt>
  1077. <dd>
  1078. <p>
  1079. The version of the file to download.
  1080. </p>
  1081. </dd>
  1082. <dt>
  1083. <strong>--metalink-preferred-protocol</strong>=PROTO
  1084. </dt>
  1085. <dd>
  1086. <p>
  1087. Specify preferred protocol.
  1088. The possible values are <em>http</em>, <em>https</em>, <em>ftp</em> and <em>none</em>.
  1089. Specifiy <em>none</em> to disable this feature.
  1090. Default: <em>none</em>
  1091. </p>
  1092. </dd>
  1093. <dt>
  1094. <strong>--metalink-enable-unique-protocol</strong>=<em>true</em>|<em>false</em>
  1095. </dt>
  1096. <dd>
  1097. <p>
  1098. If <em>true</em> is given and several protocols are available for a mirror in a
  1099. metalink file, aria2 uses one of them.
  1100. Use <strong>--metalink-preferred-protocol</strong> option to specify the preference of
  1101. protocol.
  1102. Default: <em>true</em>
  1103. </p>
  1104. </dd>
  1105. </dl></div>
  1106. <h3 id="_advanced_options">Advanced Options</h3><div style="clear:left"></div>
  1107. <div class="vlist"><dl>
  1108. <dt>
  1109. <strong>--allow-overwrite</strong>=<em>true</em>|<em>false</em>
  1110. </dt>
  1111. <dd>
  1112. <p>
  1113. If <em>false</em> is given, aria2 doesn't download a file which already exists but
  1114. the corresponding .aria2 file doesn't exist.
  1115. In HTTP(S)/FTP download, if <strong>--auto-file-renaming</strong>=<em>true</em> then,
  1116. file name will be renamed. See <strong>--auto-file-renaming</strong> for details.
  1117. Default: <em>false</em>
  1118. </p>
  1119. </dd>
  1120. <dt>
  1121. <strong>--allow-piece-length-change</strong>=<em>true</em>|<em>false</em>
  1122. </dt>
  1123. <dd>
  1124. <p>
  1125. If false is given, aria2 aborts download when a piece length is different
  1126. from one in a control file.
  1127. If true is given, you can proceed but some download progress will be lost.
  1128. Default: <em>false</em>
  1129. </p>
  1130. </dd>
  1131. <dt>
  1132. <strong>--async-dns</strong>[=<em>true</em>|<em>false</em>]
  1133. </dt>
  1134. <dd>
  1135. <p>
  1136. Enable asynchronous DNS.
  1137. Default: <em>true</em>
  1138. </p>
  1139. </dd>
  1140. <dt>
  1141. <strong>--auto-file-renaming</strong>[=<em>true</em>|<em>false</em>]
  1142. </dt>
  1143. <dd>
  1144. <p>
  1145. Rename file name if the same file already exists.
  1146. This option works only in HTTP(S)/FTP download.
  1147. The new file name has a dot and a number(1..9999) appended.
  1148. Default: <em>true</em>
  1149. </p>
  1150. </dd>
  1151. <dt>
  1152. <strong>--auto-save-interval</strong>=SEC
  1153. </dt>
  1154. <dd>
  1155. <p>
  1156. Save a control file(*.aria2) every SEC seconds.
  1157. If <em>0</em> is given, a control file is not saved during download. aria2 saves a
  1158. control file when it stops regardless of the value.
  1159. The possible values are between <em>0</em> to <em>600</em>.
  1160. Default: <em>60</em>
  1161. </p>
  1162. </dd>
  1163. <dt>
  1164. <strong>--conf-path</strong>=PATH
  1165. </dt>
  1166. <dd>
  1167. <p>
  1168. Change the configuration file path to PATH.
  1169. Default: <em>$HOME/.aria2/aria2.conf</em>
  1170. </p>
  1171. </dd>
  1172. <dt>
  1173. <strong>-D</strong>, <strong>--daemon</strong>
  1174. </dt>
  1175. <dd>
  1176. <p>
  1177. Run as daemon.
  1178. </p>
  1179. </dd>
  1180. <dt>
  1181. <strong>--enable-direct-io</strong>[=<em>true</em>|<em>false</em>]
  1182. </dt>
  1183. <dd>
  1184. <p>
  1185. Enable directI/O, which lowers cpu usage while allocating/checking files.
  1186. Turn off if you encounter any error.
  1187. Default: <em>false</em>
  1188. </p>
  1189. </dd>
  1190. <dt>
  1191. <strong>--file-allocation</strong>=METHOD
  1192. </dt>
  1193. <dd>
  1194. <p>
  1195. Specify file allocation method. METHOD is either <em>none</em> or <em>prealloc</em>.
  1196. <em>none</em> doesn't pre-allocate file space. <em>prealloc</em> pre-allocates file space
  1197. before download begins. This may take some time depending on the size of the
  1198. file.
  1199. Default: <em>prealloc</em>
  1200. </p>
  1201. </dd>
  1202. <dt>
  1203. <strong>--log-level</strong>=LEVEL
  1204. </dt>
  1205. <dd>
  1206. <p>
  1207. Set log level to output.
  1208. LEVEL is either <em>debug</em>, <em>info</em>, <em>notice</em>, <em>warn</em> or <em>error</em>.
  1209. Default: <em>debug</em>
  1210. </p>
  1211. </dd>
  1212. <dt>
  1213. <strong>--summary-interval</strong>=SEC
  1214. </dt>
  1215. <dd>
  1216. <p>
  1217. Set interval in seconds to output download progress summary.
  1218. Setting <em>0</em> suppresses the output.
  1219. Default: <em>60</em>
  1220. </p>
  1221. </dd>
  1222. </dl></div>
  1223. <div class="admonitionblock">
  1224. <table><tr>
  1225. <td class="icon">
  1226. <div class="title">Note</div>
  1227. </td>
  1228. <td class="content">In multi file torrent, the files adjacent forward to the specified files
  1229. are also allocated if they share a same piece.</td>
  1230. </tr></table>
  1231. </div>
  1232. <div class="vlist"><dl>
  1233. <dt>
  1234. <strong>-Z</strong>, <strong>--force-sequential</strong>[=<em>true</em>|<em>false</em>]
  1235. </dt>
  1236. <dd>
  1237. <p>
  1238. Fetch URIs in the command-line sequentially and download each URI in a
  1239. separate session, like the usual command-line download utilities.
  1240. Default: <em>false</em>
  1241. </p>
  1242. </dd>
  1243. <dt>
  1244. <strong>--max-download-limit</strong>=SPEED
  1245. </dt>
  1246. <dd>
  1247. <p>
  1248. Set max download speed in bytes per sec. <em>0</em> means unrestricted.
  1249. You can append <em>K</em> or <em>M</em>(1K = 1024, 1M = 1024K).
  1250. Default: <em>0</em>
  1251. </p>
  1252. </dd>
  1253. <dt>
  1254. <strong>--no-conf</strong>
  1255. </dt>
  1256. <dd>
  1257. <p>
  1258. Disable loading aria2.conf file.
  1259. </p>
  1260. </dd>
  1261. <dt>
  1262. <strong>--no-file-allocation-limit</strong>=SIZE
  1263. </dt>
  1264. <dd>
  1265. <p>
  1266. No file allocation is made for files whose size is smaller than SIZE.
  1267. You can append <em>K</em> or <em>M</em>(1K = 1024, 1M = 1024K).
  1268. Default: <em>5M</em>
  1269. </p>
  1270. </dd>
  1271. <dt>
  1272. <strong>-P</strong>, <strong>--parameterized-uri</strong>[=<em>true</em>|<em>false</em>]
  1273. </dt>
  1274. <dd>
  1275. <p>
  1276. Enable parameterized URI support.
  1277. You can specify set of parts: <em>http://{sv1,sv2,sv3}/foo.iso</em>.
  1278. Also you can specify numeric sequences with step counter:
  1279. <em>http://host/image[000-100:2].img</em>.
  1280. A step counter can be omitted.
  1281. If all URIs do not point to the same file, such as the second example above,
  1282. -Z option is required.
  1283. Default: <em>false</em>
  1284. </p>
  1285. </dd>
  1286. <dt>
  1287. <strong>-q</strong>, <strong>--quiet</strong>[=<em>true</em>|<em>false</em>]
  1288. </dt>
  1289. <dd>
  1290. <p>
  1291. Make aria2 quite (no console output).
  1292. Default: <em>false</em>
  1293. </p>
  1294. </dd>
  1295. <dt>
  1296. <strong>--realtime-chunk-checksum</strong>=<em>true</em>|<em>false</em>
  1297. </dt>
  1298. <dd>
  1299. <p>
  1300. Validate chunk of data by calculating checkusm while download a file if
  1301. chunk checksums are provided. Currently Metalink is the only way to to
  1302. provide chunk checksums.
  1303. Default: <em>true</em>
  1304. </p>
  1305. </dd>
  1306. <dt>
  1307. <strong>--stop</strong>=SEC
  1308. </dt>
  1309. <dd>
  1310. <p>
  1311. Stop application after SEC seconds has passed.
  1312. If <em>0</em> is given, this feature is disabled.
  1313. Default: <em>0</em>
  1314. </p>
  1315. </dd>
  1316. <dt>
  1317. <strong>-v</strong>, <strong>--version</strong>
  1318. </dt>
  1319. <dd>
  1320. <p>
  1321. Print the version number, copyright and the configuration information and
  1322. exit.
  1323. </p>
  1324. </dd>
  1325. </dl></div>
  1326. <h3 id="_url_torrent_file_metalink_file">URL, TORRENT_FILE, METALINK_FILE</h3><div style="clear:left"></div>
  1327. <div class="para"><p>You can specify multiple URLs in command-line.
  1328. Unless you specify <strong>-Z</strong> option, all URLs must point to the same file or downloading will fail.</p></div>
  1329. <div class="para"><p>You can also specify arbitrary number of torrent files and metalink files
  1330. stored in a local drive. Please note that they are always treated as a
  1331. separate download.</p></div>
  1332. <div class="para"><p>You can specify both torrent file with -T option and URLs. By doing this,
  1333. download a file from both torrent swarm and HTTP(S)/FTP server at the same time,
  1334. while the data from HTTP(S)/FTP are uploaded to the torrent swarm. Note that
  1335. only single file torrent can be integrated with HTTP(S)/FTP.</p></div>
  1336. <div class="admonitionblock">
  1337. <table><tr>
  1338. <td class="icon">
  1339. <div class="title">Note</div>
  1340. </td>
  1341. <td class="content">Make sure that URL is quoted with single(') or double(") quotation if it
  1342. contains "&amp;" or any characters that have special meaning in shell.</td>
  1343. </tr></table>
  1344. </div>
  1345. </div>
  1346. <h2 id="_examples">EXAMPLES</h2>
  1347. <div class="sectionbody">
  1348. <h3 id="_http_ftp_segmented_download">HTTP/FTP Segmented Download</h3><div style="clear:left"></div>
  1349. <h4 id="_download_a_file">Download a file</h4>
  1350. <div class="listingblock">
  1351. <div class="content">
  1352. <pre><tt>aria2c http://host/file.zip</tt></pre>
  1353. </div></div>
  1354. <div class="admonitionblock">
  1355. <table><tr>
  1356. <td class="icon">
  1357. <div class="title">Note</div>
  1358. </td>
  1359. <td class="content">aria2 uses 5 connections to download 1 file by default.</td>
  1360. </tr></table>
  1361. </div>
  1362. <h4 id="_download_a_file_using_1_connection">Download a file using 1 connection</h4>
  1363. <div class="listingblock">
  1364. <div class="content">
  1365. <pre><tt>aria2c -s1 http://host/file.zip</tt></pre>
  1366. </div></div>
  1367. <div class="admonitionblock">
  1368. <table><tr>
  1369. <td class="icon">
  1370. <div class="title">Note</div>
  1371. </td>
  1372. <td class="content">aria2 uses 5 connections to download 1 file by default.
  1373. -s1 limtis the number of connections to just 1.</td>
  1374. </tr></table>
  1375. </div>
  1376. <div class="admonitionblock">
  1377. <table><tr>
  1378. <td class="icon">
  1379. <div class="title">Note</div>
  1380. </td>
  1381. <td class="content">To pause a download, press Ctrl-C. You can resume the transfer by running aria2c with the same argument at the same directory. You can change URLs as long as they are pointing to the same file.</td>
  1382. </tr></table>
  1383. </div>
  1384. <h4 id="_download_a_file_from_2_different_http_servers">Download a file from 2 different HTTP servers</h4>
  1385. <div class="listingblock">
  1386. <div class="content">
  1387. <pre><tt>aria2c http://host/file.zip http://mirror/file.zip</tt></pre>
  1388. </div></div>
  1389. <h4 id="_download_a_file_from_http_and_ftp_servers">Download a file from HTTP and FTP servers</h4>
  1390. <div class="listingblock">
  1391. <div class="content">
  1392. <pre><tt>aria2c http://host1/file.zip ftp://host2/file.zip</tt></pre>
  1393. </div></div>
  1394. <h4 id="_download_files_listed_in_a_file_concurrently">Download files listed in a file concurrently</h4>
  1395. <div class="listingblock">
  1396. <div class="content">
  1397. <pre><tt>aria2c -ifiles.txt -j2</tt></pre>
  1398. </div></div>
  1399. <div class="admonitionblock">
  1400. <table><tr>
  1401. <td class="icon">
  1402. <div class="title">Note</div>
  1403. </td>
  1404. <td class="content">-j option specifies the number of parallel downloads.</td>
  1405. </tr></table>
  1406. </div>
  1407. <h3 id="_metalink_download">Metalink Download</h3><div style="clear:left"></div>
  1408. <h4 id="_download_files_with_remote_metalink">Download files with remote Metalink</h4>
  1409. <div class="listingblock">
  1410. <div class="content">
  1411. <pre><tt>aria2c --follow-metalink=mem http://host/file.metalink</tt></pre>
  1412. </div></div>
  1413. <h4 id="_download_using_a_local_metalink_file">Download using a local metalink file</h4>
  1414. <div class="listingblock">
  1415. <div class="content">
  1416. <pre><tt>aria2c -p --lowest-speed-limit=4000 file.metalink</tt></pre>
  1417. </div></div>
  1418. <div class="admonitionblock">
  1419. <table><tr>
  1420. <td class="icon">
  1421. <div class="title">Note</div>
  1422. </td>
  1423. <td class="content">To pause a download, press Ctrl-C.
  1424. You can resume the transfer by running aria2c with the same argument at the same
  1425. directory.</td>
  1426. </tr></table>
  1427. </div>
  1428. <h4 id="_download_several_local_metalink_files">Download several local metalink files</h4>
  1429. <div class="listingblock">
  1430. <div class="content">
  1431. <pre><tt>aria2c -j2 file1.metalink file2.metalink</tt></pre>
  1432. </div></div>
  1433. <h4 id="_download_only_selected_files_using_index">Download only selected files using index</h4>
  1434. <div class="listingblock">
  1435. <div class="content">
  1436. <pre><tt>aria2c --select-file=1-4,8 file.metalink</tt></pre>
  1437. </div></div>
  1438. <div class="admonitionblock">
  1439. <table><tr>
  1440. <td class="icon">
  1441. <div class="title">Note</div>
  1442. </td>
  1443. <td class="content">The index is printed to the console using -S option.</td>
  1444. </tr></table>
  1445. </div>
  1446. <h4 id="_download_a_file_using_a_local_metalink_file_with_user_preference">Download a file using a local .metalink file with user preference</h4>
  1447. <div class="listingblock">
  1448. <div class="content">
  1449. <pre><tt>aria2c --metalink-location=JP,US --metalink-version=1.1 --metalink-language=en-US file.metalink</tt></pre>
  1450. </div></div>
  1451. <h3 id="_bittorrent_download">BitTorrent Download</h3><div style="clear:left"></div>
  1452. <h4 id="_download_files_from_remote_bittorrent_file">Download files from remote BitTorrent file</h4>
  1453. <div class="listingblock">
  1454. <div class="content">
  1455. <pre><tt>aria2c --follow-torrent=mem http://host/file.torrent</tt></pre>
  1456. </div></div>
  1457. <h4 id="_download_using_a_local_torrent_file">Download using a local torrent file</h4>
  1458. <div class="listingblock">
  1459. <div class="content">
  1460. <pre><tt>aria2c --max-upload-limit=40K file.torrent</tt></pre>
  1461. </div></div>
  1462. <div class="admonitionblock">
  1463. <table><tr>
  1464. <td class="icon">
  1465. <div class="title">Note</div>
  1466. </td>
  1467. <td class="content">--max-upload-limit specifies the max of upload rate.</td>
  1468. </tr></table>
  1469. </div>
  1470. <div class="admonitionblock">
  1471. <table><tr>
  1472. <td class="icon">
  1473. <div class="title">Note</div>
  1474. </td>
  1475. <td class="content">To pause a download, press Ctrl-C. You can resume the transfer by run aria2c with the same argument at the same directory.</td>
  1476. </tr></table>
  1477. </div>
  1478. <h4 id="_download_2_torrents">Download 2 torrents</h4>
  1479. <div class="listingblock">
  1480. <div class="content">
  1481. <pre><tt>aria2c -j2 file1.torrent file2.torrent</tt></pre>
  1482. </div></div>
  1483. <h4 id="_download_a_file_using_torrent_and_http_ftp_server">Download a file using torrent and HTTP/FTP server</h4>
  1484. <div class="listingblock">
  1485. <div class="content">
  1486. <pre><tt>aria2c -Ttest.torrent http://host1/file ftp://host2/file</tt></pre>
  1487. </div></div>
  1488. <div class="admonitionblock">
  1489. <table><tr>
  1490. <td class="icon">
  1491. <div class="title">Note</div>
  1492. </td>
  1493. <td class="content">Downloading multi file torrent with HTTP/FTP is not supported.</td>
  1494. </tr></table>
  1495. </div>
  1496. <h4 id="_download_only_selected_files_using_index_usually_called_selectable_download">Download only selected files using index(usually called "selectable download")</h4>
  1497. <div class="listingblock">
  1498. <div class="content">
  1499. <pre><tt>aria2c --select-file=1-4,8 file.torrent</tt></pre>
  1500. </div></div>
  1501. <div class="admonitionblock">
  1502. <table><tr>
  1503. <td class="icon">
  1504. <div class="title">Note</div>
  1505. </td>
  1506. <td class="content">The index is printed to the console using -S option.</td>
  1507. </tr></table>
  1508. </div>
  1509. <h4 id="_change_the_listening_port_for_incoming_peer">Change the listening port for incoming peer</h4>
  1510. <div class="listingblock">
  1511. <div class="content">
  1512. <pre><tt>aria2c --listen-port=7000-7001,8000 file.torrent</tt></pre>
  1513. </div></div>
  1514. <div class="admonitionblock">
  1515. <table><tr>
  1516. <td class="icon">
  1517. <div class="title">Note</div>
  1518. </td>
  1519. <td class="content">Since aria2 doesn't configure firewall or router for port forwarding, it's up
  1520. to you to do it manually.</td>
  1521. </tr></table>
  1522. </div>
  1523. <h4 id="_specify_the_condition_to_stop_program_after_torrent_download_finished">Specify the condition to stop program after torrent download finished</h4>
  1524. <div class="listingblock">
  1525. <div class="content">
  1526. <pre><tt>aria2c --seed-time=120 --seed-ratio=1.0 file.torrent</tt></pre>
  1527. </div></div>
  1528. <div class="admonitionblock">
  1529. <table><tr>
  1530. <td class="icon">
  1531. <div class="title">Note</div>
  1532. </td>
  1533. <td class="content">In the above example, the program exists when the 120 minutes has elapsed since download completed or seed ratio reaches 1.0.</td>
  1534. </tr></table>
  1535. </div>
  1536. <h4 id="_throttle_upload_speed">Throttle upload speed</h4>
  1537. <div class="listingblock">
  1538. <div class="content">
  1539. <pre><tt>aria2c --max-upload-limit=100K file.torrent</tt></pre>
  1540. </div></div>
  1541. <h4 id="_enable_dht">Enable DHT</h4>
  1542. <div class="listingblock">
  1543. <div class="content">
  1544. <pre><tt>aria2c --enable-dht --dht-listen-port=6881 file.torrent</tt></pre>
  1545. </div></div>
  1546. <div class="admonitionblock">
  1547. <table><tr>
  1548. <td class="icon">
  1549. <div class="title">Note</div>
  1550. </td>
  1551. <td class="content">DHT uses udp port. Since aria2 doesn't configure firewall or router for port
  1552. forwarding, it's up to you to do it manually.</td>
  1553. </tr></table>
  1554. </div>
  1555. <h3 id="_more_advanced_http_features">More advanced HTTP features</h3><div style="clear:left"></div>
  1556. <h4 id="_load_cookies">Load cookies</h4>
  1557. <div class="listingblock">
  1558. <div class="content">
  1559. <pre><tt>aria2c --load-cookies=cookies.txt http://host/file.zip</tt></pre>
  1560. </div></div>
  1561. <div class="admonitionblock">
  1562. <table><tr>
  1563. <td class="icon">
  1564. <div class="title">Note</div>
  1565. </td>
  1566. <td class="content">You can use Firefox/Mozilla's cookie file without modification.</td>
  1567. </tr></table>
  1568. </div>
  1569. <h4 id="_resume_download_started_by_web_browsers_or_another_programs">Resume download started by web browsers or another programs</h4>
  1570. <div class="listingblock">
  1571. <div class="content">
  1572. <pre><tt>aria2c -c -s2 http://host/partiallydownloadedfile.zip</tt></pre>
  1573. </div></div>
  1574. <h3 id="_and_more_advanced_features">And more advanced features</h3><div style="clear:left"></div>
  1575. <h4 id="_throttle_download_speed">Throttle download speed</h4>
  1576. <div class="listingblock">
  1577. <div class="content">
  1578. <pre><tt>aria2c --max-download-limit=100K file.metalink</tt></pre>
  1579. </div></div>
  1580. <h4 id="_repair_a_damaged_download_using_check_integrity_option">Repair a damaged download using --check-integrity option</h4>
  1581. <div class="listingblock">
  1582. <div class="content">
  1583. <pre><tt>aria2c --check-integrity=true file.metalink</tt></pre>
  1584. </div></div>
  1585. <div class="admonitionblock">
  1586. <table><tr>
  1587. <td class="icon">
  1588. <div class="title">Note</div>
  1589. </td>
  1590. <td class="content">This option is only available used with BitTorrent or metalink with chunk
  1591. checksums.</td>
  1592. </tr></table>
  1593. </div>
  1594. <h4 id="_drop_connection_if_download_speed_is_lower_than_specified_value">Drop connection if download speed is lower than specified value</h4>
  1595. <div class="listingblock">
  1596. <div class="content">
  1597. <pre><tt>aria2c --lowest-speed-limit=10K file.metalink</tt></pre>
  1598. </div></div>
  1599. <h4 id="_parameterized_uri_support">Parameterized URI support</h4>
  1600. <div class="para"><p>You can specify set of parts:</p></div>
  1601. <div class="listingblock">
  1602. <div class="content">
  1603. <pre><tt>aria2c -P http://{host1,host2,host3}/file.iso</tt></pre>
  1604. </div></div>
  1605. <div class="para"><p>You can specify numeric sequence:</p></div>
  1606. <div class="listingblock">
  1607. <div class="content">
  1608. <pre><tt>aria2c -Z -P http://host/image[000-100].png</tt></pre>
  1609. </div></div>
  1610. <div class="admonitionblock">
  1611. <table><tr>
  1612. <td class="icon">
  1613. <div class="title">Note</div>
  1614. </td>
  1615. <td class="content">-Z option is required if the all URIs don't point to the same file, such as the above example.</td>
  1616. </tr></table>
  1617. </div>
  1618. <div class="para"><p>You can specify step counter:</p></div>
  1619. <div class="listingblock">
  1620. <div class="content">
  1621. <pre><tt>aria2c -Z -P http://host/image[A-Z:2].png</tt></pre>
  1622. </div></div>
  1623. <h4 id="_parallel_downloads_of_arbitrary_number_of_url_metalink_torrent">Parallel downloads of arbitrary number of URL,metalink,torrent</h4>
  1624. <div class="listingblock">
  1625. <div class="content">
  1626. <pre><tt>aria2c -j3 -Z http://host/file1 file2.torrent file3.metalink</tt></pre>
  1627. </div></div>
  1628. <h4 id="_bittorrent_encryption">BitTorrent Encryption</h4>
  1629. <div class="para"><p>Encrypt whole payload using ARC4:</p></div>
  1630. <div class="listingblock">
  1631. <div class="content">
  1632. <pre><tt>aria2c --bt-min-crypto-level=arc4 --bt-require-crypto=true file.torrent</tt></pre>
  1633. </div></div>
  1634. </div>
  1635. <h2 id="_resume_download">RESUME DOWNLOAD</h2>
  1636. <div class="sectionbody">
  1637. <div class="para"><p>Usually, you can resume transfer by just issuing same command(aria2c URL)
  1638. if the previous transfer is made by aria2.</p></div>
  1639. <div class="para"><p>If the previous transfer is made by a browser or wget like sequencial
  1640. download manager, then use -c option to continue the transfer(aria2c -c URL).</p></div>
  1641. </div>
  1642. <h2 id="_control_file">CONTROL FILE</h2>
  1643. <div class="sectionbody">
  1644. <div class="para"><p>aria2 uses a control file to keep track the progress of download.
  1645. A control file is placed at the same directory of the dowloading file and
  1646. its filename is the filename of downloading file with ".aria2" appended.
  1647. For example, if you are downloading file.zip, then the control file should be
  1648. file.zip.aria2.
  1649. (There is a exception for this naming convention.
  1650. If you are downloading a multi torrent, its control file is the "top directory"
  1651. name of the torrent with ".aria2" appended.
  1652. The "top directory" name is a value of "name" key in "info" directory in a torrent file.)</p></div>
  1653. <div class="para"><p>Usually a control file is deleted once download completed.
  1654. If aria2 decides that download cannot be resumed(for example, when downloading
  1655. a file from a HTTP server which doesn't support resume), a control file is
  1656. not created.</p></div>
  1657. <div class="para"><p>Normally if you lose a control file, you cannot resume download.
  1658. But if you have a torrent or metalink with chunk checksums for the file,
  1659. you can resume the download without a control file by giving
  1660. --check-integrity=true option to aria2c in command-line.</p></div>
  1661. </div>
  1662. <h2 id="_seeding_downloaded_file_in_bittorrent">SEEDING DOWNLOADED FILE IN BITTORRENT</h2>
  1663. <div class="sectionbody">
  1664. <div class="para"><p>You can seed downloaded file using --check-integrity=true option.</p></div>
  1665. <div class="listingblock">
  1666. <div class="content">
  1667. <pre><tt>aria2c --check-integrity=true file.torrent</tt></pre>
  1668. </div></div>
  1669. </div>
  1670. <h2 id="_server_performance_profile">SERVER PERFORMANCE PROFILE</h2>
  1671. <div class="sectionbody">
  1672. <div class="para"><p>This section describes the format of server performance profile.
  1673. The file is plain text and each line has several NAME=VALUE pair, delimited by
  1674. comma.
  1675. Currently following NAMEs are recognized:</p></div>
  1676. <div class="vlist"><dl>
  1677. <dt>
  1678. host
  1679. </dt>
  1680. <dd>
  1681. <p>
  1682. Hostname of the server. Required.
  1683. </p>
  1684. </dd>
  1685. <dt>
  1686. protocol
  1687. </dt>
  1688. <dd>
  1689. <p>
  1690. Protocol for this profile, such as ftp, http. Required.
  1691. </p>
  1692. </dd>
  1693. <dt>
  1694. dl_speed
  1695. </dt>
  1696. <dd>
  1697. <p>
  1698. The average download speed observed in the previous download in bytes per sec.
  1699. Required.
  1700. </p>
  1701. </dd>
  1702. <dt>
  1703. last_updated
  1704. </dt>
  1705. <dd>
  1706. <p>
  1707. Last contact time in GMT with this server, specified in the seconds from the
  1708. Epoch. Required.
  1709. </p>
  1710. </dd>
  1711. <dt>
  1712. status
  1713. </dt>
  1714. <dd>
  1715. <p>
  1716. ERROR is set when server cannot be reached or out-of-service or timeout
  1717. occurred. Otherwise, OK is set.
  1718. </p>
  1719. </dd>
  1720. </dl></div>
  1721. <div class="para"><p>Those fields must exist in one line. The order of the fields is not significant.You can put pairs other than above; they are simply ignored.</p></div>
  1722. <div class="para"><p>An example is follow:</p></div>
  1723. <div class="listingblock">
  1724. <div class="content">
  1725. <pre><tt>host=localhost, protocol=http, dl_speed=32000, last_updated=1222491640, status=OK
  1726. host=localhost, protocol=ftp, dl_speed=0, last_updated=1222491632, status=ERROR</tt></pre>
  1727. </div></div>
  1728. </div>
  1729. <h2 id="_files">FILES</h2>
  1730. <div class="sectionbody">
  1731. <h3 id="_aria2_conf">aria2.conf</h3><div style="clear:left"></div>
  1732. <div class="para"><p>User configuration file.
  1733. It must be placed under $HOME/.aria2 and must be named as aria2.conf.
  1734. In each line, there is 1 parameter whose syntax is name=value pair,
  1735. where name is the long command-line option name without <em>--</em> prefix.
  1736. The lines beginning <em>#</em> are treated as comments.</p></div>
  1737. <div class="listingblock">
  1738. <div class="content">
  1739. <pre><tt># sample configuration file for aria2c
  1740. listen-port=60000
  1741. dht-listen-port=60000
  1742. seed-ratio=1.0
  1743. max-upload-limit=50K
  1744. ftp-pasv=true</tt></pre>
  1745. </div></div>
  1746. <h3 id="_dht_dat">dht.dat</h3><div style="clear:left"></div>
  1747. <div class="para"><p>By default, the routing table of DHT is saved to the path $HOME/.aria2/dht.dat.</p></div>
  1748. </div>
  1749. <h2 id="_resources">RESOURCES</h2>
  1750. <div class="sectionbody">
  1751. <div class="para"><p>Project web site: <a href="http://aria2.sourceforge.net/">http://aria2.sourceforge.net/</a></p></div>
  1752. <div class="para"><p>metalink: <a href="http://www.metalinker.org/">http://www.metalinker.org/</a></p></div>
  1753. </div>
  1754. <h2 id="_reporting_bugs">REPORTING BUGS</h2>
  1755. <div class="sectionbody">
  1756. <div class="para"><p>Report bugs to Tatsuhiro Tsujikawa &lt;t-tujikawa at users.sourceforge.net&gt;</p></div>
  1757. </div>
  1758. <h2 id="_author">AUTHOR</h2>
  1759. <div class="sectionbody">
  1760. <div class="para"><p>Tatsuhiro Tsujikawa &lt;t-tujikawa at users.sourceforge.net&gt;</p></div>
  1761. </div>
  1762. <h2 id="_copyright">COPYRIGHT</h2>
  1763. <div class="sectionbody">
  1764. <div class="para"><p>Copyright &#169; 2006, 2008 Tatsuhiro Tsujikawa</p></div>
  1765. <div class="para"><p>This program is free software; you can redistribute it and/or modify
  1766. it under the terms of the GNU General Public License as published by
  1767. the Free Software Foundation; either version 2 of the License, or
  1768. (at your option) any later version.</p></div>
  1769. <div class="para"><p>This program is distributed in the hope that it will be useful,
  1770. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1771. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1772. GNU General Public License for more details.</p></div>
  1773. <div class="para"><p>You should have received a copy of the GNU General Public License
  1774. along with this program; if not, write to the Free Software
  1775. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA</p></div>
  1776. <div class="para"><p>In addition, as a special exception, the copyright holders give
  1777. permission to link the code of portions of this program with the
  1778. OpenSSL library under certain conditions as described in each
  1779. individual source file, and distribute linked combinations
  1780. including the two.
  1781. You must obey the GNU General Public License in all respects
  1782. for all of the code used other than OpenSSL. If you modify
  1783. file(s) with this exception, you may extend this exception to your
  1784. version of the file(s), but you are not obligated to do so. If you
  1785. do not wish to do so, delete this exception statement from your
  1786. version. If you delete this exception statement from all source
  1787. files in the program, then also delete it here.</p></div>
  1788. </div>
  1789. <div id="footer">
  1790. <div id="footer-text">
  1791. Last updated 2008-10-14 22:14:48 JST
  1792. </div>
  1793. </div>
  1794. </body>
  1795. </html>