fallocate(1) - Linux man page
Name
fallocate - preallocate space to a file.Synopsis
fallocate [-n] [-o offset] -l length filenameDescription
As of the Linux Kernel v2.6.31, the fallocate system call is supported by the btrfs, ext4, ocfs2, and xfs filesystems.
The exit code returned by fallocate is 0 on success and 1 on failure.
Options
- -h, --help
- Print help and exit.
- -n, --keep-size
- Do not modify the apparent length of the file. This may effectively allocate blocks past EOF, which can be removed with a truncate.
- -o, --offset offset
- Specifies the beginning offset of the allocation, in bytes. Suffixes of k, m, g, t, p, e may be specified to denote KiB, MiB, GiB, etc.
- -l, --length length
- Specifies the length of the allocation, in bytes. Suffixes of k, m, g, t, p, e may be specified to denote KiB, MiB, GiB, etc.
Authors
Eric Sandeen <sandeen@redhat.com> Karel Zak <kzak@redhat.com>