mirror of https://github.com/aria2/aria2
2010-09-11 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Updated man page according to changes in options. * doc/aria2c.1.txtpull/1/head
parent
f82ffef460
commit
90c927af74
|
@ -1,3 +1,8 @@
|
||||||
|
2010-09-11 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Updated man page according to changes in options.
|
||||||
|
* doc/aria2c.1.txt
|
||||||
|
|
||||||
2010-09-11 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2010-09-11 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Added short option -k for --min-split-size option and -x for
|
Added short option -k for --min-split-size option and -x for
|
||||||
|
|
20
doc/aria2c.1
20
doc/aria2c.1
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: aria2c
|
.\" Title: aria2c
|
||||||
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||||
.\" Date: 08/31/2010
|
.\" Date: 09/11/2010
|
||||||
.\" Manual: Aria2 Manual
|
.\" Manual: Aria2 Manual
|
||||||
.\" Source: Aria2 1.10.2
|
.\" Source: Aria2 1.10.2
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "ARIA2C" "1" "08/31/2010" "Aria2 1\&.10\&.2" "Aria2 Manual"
|
.TH "ARIA2C" "1" "09/11/2010" "Aria2 1\&.10\&.2" "Aria2 Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
@ -75,7 +75,7 @@ option\&. Default:
|
||||||
.PP
|
.PP
|
||||||
\fB\-V\fR, \fB\-\-check\-integrity\fR[=\fItrue\fR|\fIfalse\fR]
|
\fB\-V\fR, \fB\-\-check\-integrity\fR[=\fItrue\fR|\fIfalse\fR]
|
||||||
.RS 4
|
.RS 4
|
||||||
Check file integrity by validating piece hashes\&. This option has effect only in BitTorrent and Metalink downloads with chunk checksums\&. Use this option to re\-download a damaged portion of a file\&. Default:
|
Check file integrity by validating piece hashes or a hash of entire file\&. This option has effect only in BitTorrent and Metalink downloads with checksums\&. If piece hashes are provided, this option can detect damaged portions of a file and re\-download them\&. If a hash of entire file is provided, hash check is only done when file has benn already download\&. This is determined by file length\&. If hash check fails, file is re\-downloaded from scratch\&. If both piece hashes and a hash of entire file are provided, only piece hashes are used\&. Default:
|
||||||
\fIfalse\fR
|
\fIfalse\fR
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
|
@ -1255,14 +1255,18 @@ If an interface has multiple addresses, it is highly recommended to specify IP a
|
||||||
.sp .5v
|
.sp .5v
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\fB\-\-max\-connection\-per\-server\fR=NUM
|
\fB\-x\fR, \fB\-\-max\-connection\-per\-server\fR=NUM
|
||||||
.RS 4
|
.RS 4
|
||||||
The maximum number of connections to one server for each download\&. Possible Values:
|
The maximum number of connections to one server for each download\&. Default:
|
||||||
\fI1\fR\-\fI4\fR
|
|
||||||
Default:
|
|
||||||
\fI1\fR
|
\fI1\fR
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
|
\fB\-\-max\-download\-result\fR=NUM
|
||||||
|
.RS 4
|
||||||
|
Set maximum number of download result kept in memory\&. The download results are completed/error/removed downloads\&. The download results are stored in FIFO queue and it can store at most NUM download results\&. When queue is full and new download result is created, oldest download result is removed from the front of the queue and new one is pushed to the back\&. Setting big number in this option may result high memory consumption after thousands of downloads\&. Specifying 0 means no download result is kept\&. Default:
|
||||||
|
\fI1000\fR
|
||||||
|
.RE
|
||||||
|
.PP
|
||||||
\fB\-\-max\-resume\-failure\-tries\fR=N
|
\fB\-\-max\-resume\-failure\-tries\fR=N
|
||||||
.RS 4
|
.RS 4
|
||||||
When used with
|
When used with
|
||||||
|
@ -1277,7 +1281,7 @@ option\&. Default:
|
||||||
\fI0\fR
|
\fI0\fR
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\fB\-\-min\-split\-size\fR=SIZE
|
\fB\-k\fR, \fB\-\-min\-split\-size\fR=SIZE
|
||||||
.RS 4
|
.RS 4
|
||||||
aria2 does not split less than 2*SIZE byte range\&. For example, let\(cqs consider downloading 20MiB file\&. If SIZE is 10M, aria2 can split file into 2 range [0\-10MiB) and [10MiB\-20MiB) and download it using 2 sources(if
|
aria2 does not split less than 2*SIZE byte range\&. For example, let\(cqs consider downloading 20MiB file\&. If SIZE is 10M, aria2 can split file into 2 range [0\-10MiB) and [10MiB\-20MiB) and download it using 2 sources(if
|
||||||
\fB\-\-split\fR
|
\fB\-\-split\fR
|
||||||
|
|
|
@ -644,11 +644,15 @@ downloading a file like BitTorrent.</p></div>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
Check file integrity by validating piece hashes.
|
Check file integrity by validating piece hashes or a hash of entire
|
||||||
This option has effect only in BitTorrent and Metalink downloads with
|
file. This option has effect only in BitTorrent and Metalink
|
||||||
chunk checksums.
|
downloads with checksums. If piece hashes are provided, this option
|
||||||
Use this option to re-download a damaged portion of a file.
|
can detect damaged portions of a file and re-download them. If a
|
||||||
Default: <em>false</em>
|
hash of entire file is provided, hash check is only done when file
|
||||||
|
has benn already download. This is determined by file length. If
|
||||||
|
hash check fails, file is re-downloaded from scratch. If both piece
|
||||||
|
hashes and a hash of entire file are provided, only piece hashes are
|
||||||
|
used. Default: <em>false</em>
|
||||||
</p>
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="hdlist1">
|
<dt class="hdlist1">
|
||||||
|
@ -2102,16 +2106,31 @@ name.</td>
|
||||||
</div>
|
</div>
|
||||||
<div class="dlist"><dl>
|
<div class="dlist"><dl>
|
||||||
<dt class="hdlist1">
|
<dt class="hdlist1">
|
||||||
<strong>--max-connection-per-server</strong>=NUM
|
<strong>-x</strong>, <strong>--max-connection-per-server</strong>=NUM
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
The maximum number of connections to one server for each download.
|
The maximum number of connections to one server for each download.
|
||||||
Possible Values: <em>1</em>-<em>4</em>
|
|
||||||
Default: <em>1</em>
|
Default: <em>1</em>
|
||||||
</p>
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="hdlist1">
|
<dt class="hdlist1">
|
||||||
|
<strong>--max-download-result</strong>=NUM
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Set maximum number of download result kept in memory. The download
|
||||||
|
results are completed/error/removed downloads. The download results
|
||||||
|
are stored in FIFO queue and it can store at most NUM download
|
||||||
|
results. When queue is full and new download result is created,
|
||||||
|
oldest download result is removed from the front of the queue and
|
||||||
|
new one is pushed to the back. Setting big number in this option may
|
||||||
|
result high memory consumption after thousands of
|
||||||
|
downloads. Specifying 0 means no download result is kept. Default:
|
||||||
|
<em>1000</em>
|
||||||
|
</p>
|
||||||
|
</dd>
|
||||||
|
<dt class="hdlist1">
|
||||||
<strong>--max-resume-failure-tries</strong>=N
|
<strong>--max-resume-failure-tries</strong>=N
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
@ -2124,7 +2143,7 @@ name.</td>
|
||||||
</p>
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="hdlist1">
|
<dt class="hdlist1">
|
||||||
<strong>--min-split-size</strong>=SIZE
|
<strong>-k</strong>, <strong>--min-split-size</strong>=SIZE
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
|
@ -4380,7 +4399,7 @@ files in the program, then also delete it here.</p></div>
|
||||||
<div id="footnotes"><hr /></div>
|
<div id="footnotes"><hr /></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated 2010-08-31 22:43:01 JST
|
Last updated 2010-09-11 21:18:28 JST
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -51,11 +51,16 @@ Basic Options
|
||||||
Default: '5'
|
Default: '5'
|
||||||
|
|
||||||
*-V*, *--check-integrity*[='true'|'false']::
|
*-V*, *--check-integrity*[='true'|'false']::
|
||||||
Check file integrity by validating piece hashes.
|
|
||||||
This option has effect only in BitTorrent and Metalink downloads with
|
Check file integrity by validating piece hashes or a hash of entire
|
||||||
chunk checksums.
|
file. This option has effect only in BitTorrent and Metalink
|
||||||
Use this option to re-download a damaged portion of a file.
|
downloads with checksums. If piece hashes are provided, this option
|
||||||
Default: 'false'
|
can detect damaged portions of a file and re-download them. If a
|
||||||
|
hash of entire file is provided, hash check is only done when file
|
||||||
|
has benn already download. This is determined by file length. If
|
||||||
|
hash check fails, file is re-downloaded from scratch. If both piece
|
||||||
|
hashes and a hash of entire file are provided, only piece hashes are
|
||||||
|
used. Default: 'false'
|
||||||
|
|
||||||
*-c*, *--continue*::
|
*-c*, *--continue*::
|
||||||
Continue downloading a partially downloaded file.
|
Continue downloading a partially downloaded file.
|
||||||
|
@ -866,12 +871,24 @@ specify IP address explicitly. See also *--disable-ipv6*. If your
|
||||||
system doesn't have getifaddrs(), this option doesn't accept interface
|
system doesn't have getifaddrs(), this option doesn't accept interface
|
||||||
name.
|
name.
|
||||||
|
|
||||||
*--max-connection-per-server*=NUM::
|
*-x*, *--max-connection-per-server*=NUM::
|
||||||
|
|
||||||
The maximum number of connections to one server for each download.
|
The maximum number of connections to one server for each download.
|
||||||
Possible Values: '1'-'4'
|
|
||||||
Default: '1'
|
Default: '1'
|
||||||
|
|
||||||
|
|
||||||
|
*--max-download-result*=NUM::
|
||||||
|
|
||||||
|
Set maximum number of download result kept in memory. The download
|
||||||
|
results are completed/error/removed downloads. The download results
|
||||||
|
are stored in FIFO queue and it can store at most NUM download
|
||||||
|
results. When queue is full and new download result is created,
|
||||||
|
oldest download result is removed from the front of the queue and
|
||||||
|
new one is pushed to the back. Setting big number in this option may
|
||||||
|
result high memory consumption after thousands of
|
||||||
|
downloads. Specifying 0 means no download result is kept. Default:
|
||||||
|
'1000'
|
||||||
|
|
||||||
*--max-resume-failure-tries*=N::
|
*--max-resume-failure-tries*=N::
|
||||||
|
|
||||||
When used with *--always-resume*='false', aria2 downloads file from
|
When used with *--always-resume*='false', aria2 downloads file from
|
||||||
|
@ -880,7 +897,7 @@ name.
|
||||||
given URIs do not support resume. See *--always-resume* option.
|
given URIs do not support resume. See *--always-resume* option.
|
||||||
Default: '0'
|
Default: '0'
|
||||||
|
|
||||||
*--min-split-size*=SIZE::
|
*-k*, *--min-split-size*=SIZE::
|
||||||
|
|
||||||
aria2 does not split less than 2*SIZE byte range. For example,
|
aria2 does not split less than 2*SIZE byte range. For example,
|
||||||
let's consider downloading 20MiB file. If SIZE is 10M, aria2 can
|
let's consider downloading 20MiB file. If SIZE is 10M, aria2 can
|
||||||
|
|
Loading…
Reference in New Issue