Difference between revisions of "Fallocate"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 6: Line 6:
 
  fallocate -l 24M NEW_filename
 
  fallocate -l 24M NEW_filename
 
  -l --length
 
  -l --length
 +
 +
<pre>
 +
fallocate -h
 +
 +
Usage:
 +
fallocate [options] <filename>
 +
 +
Preallocate space to, or deallocate space from a file.
 +
 +
Options:
 +
-c, --collapse-range remove a range from the file
 +
-d, --dig-holes      detect zeroes and replace with holes
 +
-i, --insert-range  insert a hole at range, shifting existing data
 +
-l, --length <num>  length for range operations, in bytes
 +
-n, --keep-size      maintain the apparent size of the file
 +
-o, --offset <num>  offset for range operations, in bytes
 +
-p, --punch-hole    replace a range with a hole (implies -n)
 +
-z, --zero-range    zero and ensure allocation of a range
 +
-x, --posix          use posix_fallocate(3) instead of fallocate(2)
 +
-v, --verbose        verbose mode
 +
 +
-h, --help          display this help
 +
-V, --version        display version
 +
 +
For more details see fallocate(1).
 +
</pre>
  
  

Revision as of 03:17, 21 April 2020



fallocate -l 1G NEW_filename
fallocate -l 24M NEW_filename
-l --length
fallocate -h

Usage:
 fallocate [options] <filename>

Preallocate space to, or deallocate space from a file.

Options:
 -c, --collapse-range remove a range from the file
 -d, --dig-holes      detect zeroes and replace with holes
 -i, --insert-range   insert a hole at range, shifting existing data
 -l, --length <num>   length for range operations, in bytes
 -n, --keep-size      maintain the apparent size of the file
 -o, --offset <num>   offset for range operations, in bytes
 -p, --punch-hole     replace a range with a hole (implies -n)
 -z, --zero-range     zero and ensure allocation of a range
 -x, --posix          use posix_fallocate(3) instead of fallocate(2)
 -v, --verbose        verbose mode

 -h, --help           display this help
 -V, --version        display version

For more details see fallocate(1).


fallocate
fallocate: no filename specified


See also

Advertising: