mirror of https://github.com/aria2/aria2
Documented that falloc can be used against NTFS(MinGW build only).
parent
7aa41d25ac
commit
0f0d4b9a48
|
@ -920,10 +920,10 @@ Advanced Options
|
||||||
before download begins. This may take some time depending on the size of the
|
before download begins. This may take some time depending on the size of the
|
||||||
file.
|
file.
|
||||||
If you are using newer file systems such as ext4
|
If you are using newer file systems such as ext4
|
||||||
(with extents support), btrfs or xfs, 'falloc' is
|
(with extents support), btrfs, xfs or NTFS(MinGW build only), 'falloc' is
|
||||||
your best choice. It allocates large(few GiB)
|
your best choice. It allocates large(few GiB)
|
||||||
files almost instantly. Don't use 'falloc' with
|
files almost instantly. Don't use 'falloc' with
|
||||||
legacy file systems such as ext3 because it takes
|
legacy file systems such as ext3 and FAT32 because it takes
|
||||||
almost same time as 'prealloc' and it blocks aria2
|
almost same time as 'prealloc' and it blocks aria2
|
||||||
entirely until allocation finishes. 'falloc' may
|
entirely until allocation finishes. 'falloc' may
|
||||||
not be available if your system doesn't have
|
not be available if your system doesn't have
|
||||||
|
|
|
@ -131,14 +131,15 @@
|
||||||
" This may take some time depending on the size of\n" \
|
" This may take some time depending on the size of\n" \
|
||||||
" the file.\n" \
|
" the file.\n" \
|
||||||
" If you are using newer file systems such as ext4\n" \
|
" If you are using newer file systems such as ext4\n" \
|
||||||
" (with extents support), btrfs or xfs, 'falloc' is\n" \
|
" (with extents support), btrfs, xfs or NTFS\n" \
|
||||||
" your best choice. It allocates large(few GiB)\n" \
|
" (MinGW build only), 'falloc' is your best\n" \
|
||||||
" files almost instantly. Don't use 'falloc' with\n" \
|
" choice. It allocates large(few GiB) files\n" \
|
||||||
" legacy file systems such as ext3 because it takes\n" \
|
" almost instantly. Don't use 'falloc' with legacy\n" \
|
||||||
" almost same time as 'prealloc' and it blocks aria2\n" \
|
" file systems such as ext3 and FAT32 because it\n" \
|
||||||
" entirely until allocation finishes. 'falloc' may\n" \
|
" takes almost same time as 'prealloc' and it\n" \
|
||||||
" not be available if your system doesn't have\n" \
|
" blocks aria2 entirely until allocation finishes.\n" \
|
||||||
" posix_fallocate() function.")
|
" 'falloc' may not be available if your system\n" \
|
||||||
|
" doesn't have posix_fallocate() function.")
|
||||||
#define TEXT_NO_FILE_ALLOCATION_LIMIT \
|
#define TEXT_NO_FILE_ALLOCATION_LIMIT \
|
||||||
_(" --no-file-allocation-limit=SIZE No file allocation is made for files whose\n" \
|
_(" --no-file-allocation-limit=SIZE No file allocation is made for files whose\n" \
|
||||||
" size is smaller than SIZE.\n" \
|
" size is smaller than SIZE.\n" \
|
||||||
|
|
Loading…
Reference in New Issue