mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
353718785f
With to use .TP where it's easy and doesn't change layout (since .HP is marked as deprecated) - but .TP is not always perfetc match. Avoid submitting empty lines to troff and replace them mostly with .P and use '.' at line start to preserve 'visual' presence of empty line while editing man page manually when there is no extra space needed. Fix some markup. Add some missing SEE ALSO section. Drop some white-space at end-of-lines. Improve hyphenation logic so we do not split options. Use '.IP numbers' only with first one the row (others in row automatically derive this value) Use automatic enumeration for .SH titles. Guidelines in-use: https://man7.org/linux/man-pages/man7/groff.7.html https://www.gnu.org/software/groff/manual/html_node/Man-usage.html https://www.gnu.org/software/groff/manual/html_node/Lists-in-ms.html
123 lines
2.3 KiB
Plaintext
123 lines
2.3 KiB
Plaintext
.TH "FSADM" "8" "LVM TOOLS #VERSION#" "Red Hat, Inc" "\""
|
|
.
|
|
.SH "NAME"
|
|
.
|
|
fsadm \(em utility to resize or check filesystem on a device
|
|
.
|
|
.SH SYNOPSIS
|
|
.
|
|
.PD 0
|
|
.ad l
|
|
.TP 6
|
|
.B fsadm
|
|
.RI [ options ]
|
|
.BR check
|
|
.IR device
|
|
.
|
|
.TP
|
|
.B fsadm
|
|
.RI [ options ]
|
|
.BR resize
|
|
.IR device
|
|
.RI [ new_size ]
|
|
.ad b
|
|
.PD
|
|
.
|
|
.SH DESCRIPTION
|
|
.
|
|
fsadm utility checks or resizes the filesystem on a device.
|
|
It tries to use the same API for
|
|
.BR ext2 ,
|
|
.BR ext3 ,
|
|
.BR ext4 ,
|
|
.BR ReiserFS
|
|
.RB and
|
|
.BR XFS
|
|
filesystem.
|
|
.
|
|
.SH OPTIONS
|
|
.
|
|
.TP
|
|
.BR -e | --ext-offline
|
|
Unmount ext2/ext3/ext4 filesystem before doing resize.
|
|
.
|
|
.TP
|
|
.BR -f | --force
|
|
Bypass some sanity checks.
|
|
.
|
|
.TP
|
|
.BR -h | --help
|
|
Display the help text.
|
|
.
|
|
.TP
|
|
.BR -n | --dry-run
|
|
Print commands without running them.
|
|
.
|
|
.TP
|
|
.BR -v | --verbose
|
|
Be more verbose.
|
|
.
|
|
.TP
|
|
.BR -y | --yes
|
|
Answer "yes" at any prompts.
|
|
.
|
|
.TP
|
|
.BR -c | --cryptresize
|
|
Resize dm-crypt mapping together with filesystem detected on the device. The dm-crypt device must be recognizable by cryptsetup(8).
|
|
.
|
|
.TP
|
|
.BR \fInew_size [ B | K | M | G | T | P | E ]
|
|
Absolute number of filesystem blocks to be in the filesystem,
|
|
or an absolute size using a suffix (in powers of 1024).
|
|
If new_size is not supplied, the whole device is used.
|
|
.
|
|
.SH DIAGNOSTICS
|
|
.
|
|
On successful completion, the status code is 0.
|
|
A status code of 2 indicates the operation was interrupted by the user.
|
|
A status code of 3 indicates the requested check operation could not be performed
|
|
because the filesystem is mounted and does not support an online
|
|
.BR fsck (8).
|
|
A status code of 1 is used for other failures.
|
|
.
|
|
.SH EXAMPLES
|
|
.
|
|
Resize the filesystem on logical volume \fI/dev/vg/test\fP to 1000 megabytes.
|
|
If \fI/dev/vg/test\fP contains ext2/ext3/ext4
|
|
filesystem it will be unmounted prior the resize.
|
|
All [y/n] questions will be answered 'y'.
|
|
.P
|
|
#
|
|
.B fsadm -e -y resize /dev/vg/test 1000M
|
|
.
|
|
.SH ENVIRONMENT VARIABLES
|
|
.
|
|
.TP
|
|
.B TMPDIR
|
|
The temporary directory name for mount points. Defaults to "\fI/tmp\fP".
|
|
.TP
|
|
.B DM_DEV_DIR
|
|
The device directory name.
|
|
Defaults to "\fI/dev\fP" and must be an absolute path.
|
|
.
|
|
.SH SEE ALSO
|
|
.
|
|
.nh
|
|
.ad l
|
|
.BR lvm (8),
|
|
.BR lvresize (8),
|
|
.BR lvm.conf (5),
|
|
.P
|
|
.BR fsck (8),
|
|
.BR tune2fs (8),
|
|
.BR resize2fs (8),
|
|
.P
|
|
.BR reiserfstune (8),
|
|
.BR resize_reiserfs (8),
|
|
.P
|
|
.BR xfs_info (8),
|
|
.BR xfs_growfs (8),
|
|
.BR xfs_check (8),
|
|
.P
|
|
.BR cryptsetup (8)
|