mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
make: generate
This commit is contained in:
parent
3a7aeebf7d
commit
e97cf8552c
@ -36,6 +36,10 @@ lvextend \(em Add space to a logical volume
|
|||||||
\fB-l\fP|\fB--extents\fP [\fB+\fP]\fINumber\fP[PERCENT]
|
\fB-l\fP|\fB--extents\fP [\fB+\fP]\fINumber\fP[PERCENT]
|
||||||
.br
|
.br
|
||||||
\fB-f\fP|\fB--force\fP
|
\fB-f\fP|\fB--force\fP
|
||||||
|
.br
|
||||||
|
\fB--fs\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
\fB--fsmode\fP \fIString\fP
|
||||||
.br
|
.br
|
||||||
\fB-h\fP|\fB--help\fP
|
\fB-h\fP|\fB--help\fP
|
||||||
.br
|
.br
|
||||||
@ -123,6 +127,10 @@ Extend an LV by a specified size.
|
|||||||
.br
|
.br
|
||||||
[ \fB--poolmetadatasize\fP [\fB+\fP]\fISize\fP[m|UNIT] ]
|
[ \fB--poolmetadatasize\fP [\fB+\fP]\fISize\fP[m|UNIT] ]
|
||||||
.br
|
.br
|
||||||
|
[ \fB--fs\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
|
[ \fB--fsmode\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
[ COMMON_OPTIONS ]
|
[ COMMON_OPTIONS ]
|
||||||
.ad b
|
.ad b
|
||||||
.RE
|
.RE
|
||||||
@ -145,6 +153,10 @@ Extend an LV by specified PV extents.
|
|||||||
.br
|
.br
|
||||||
[ \fB-I\fP|\fB--stripesize\fP \fISize\fP[k|UNIT] ]
|
[ \fB-I\fP|\fB--stripesize\fP \fISize\fP[k|UNIT] ]
|
||||||
.br
|
.br
|
||||||
|
[ \fB--fs\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
|
[ \fB--fsmode\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
[ COMMON_OPTIONS ]
|
[ COMMON_OPTIONS ]
|
||||||
.ad b
|
.ad b
|
||||||
.RE
|
.RE
|
||||||
@ -170,7 +182,7 @@ Extend a pool metadata SubLV by a specified size.
|
|||||||
.RE
|
.RE
|
||||||
.P
|
.P
|
||||||
.RS 4
|
.RS 4
|
||||||
LV1 types: thinpool
|
LV1 types: linear thinpool
|
||||||
.RE
|
.RE
|
||||||
.P
|
.P
|
||||||
\(em
|
\(em
|
||||||
@ -184,6 +196,10 @@ Extend an LV according to a predefined policy.
|
|||||||
.ad l
|
.ad l
|
||||||
[ \fB-r\fP|\fB--resizefs\fP ]
|
[ \fB-r\fP|\fB--resizefs\fP ]
|
||||||
.br
|
.br
|
||||||
|
[ \fB--fs\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
|
[ \fB--fsmode\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
[ COMMON_OPTIONS ]
|
[ COMMON_OPTIONS ]
|
||||||
.ad b
|
.ad b
|
||||||
.RE
|
.RE
|
||||||
@ -192,7 +208,7 @@ Extend an LV according to a predefined policy.
|
|||||||
.RE
|
.RE
|
||||||
.P
|
.P
|
||||||
.RS 4
|
.RS 4
|
||||||
LV1 types: snapshot thinpool
|
LV1 types: snapshot thinpool vdopool
|
||||||
.RE
|
.RE
|
||||||
.P
|
.P
|
||||||
\(em
|
\(em
|
||||||
@ -377,6 +393,36 @@ Override various checks, confirmations and protections.
|
|||||||
Use with extreme caution.
|
Use with extreme caution.
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
|
\fB--fs\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
Control file system resizing when resizing an LV.
|
||||||
|
\fBchecksize\fP: Check the fs size and reduce the LV if the fs is not
|
||||||
|
using the reduced space (fs reduce is not needed.) If the reduced space
|
||||||
|
is used by the fs, then do not resize the fs or LV, and return an error.
|
||||||
|
(checksize only applies when reducing, and does nothing for extend.)
|
||||||
|
\fBresize\fP: Resize the fs by calling the fs-specific resize command.
|
||||||
|
This may also include mounting, unmounting, or running fsck. See --fsmode to
|
||||||
|
control mounting behavior, and --nofsck to disable fsck.
|
||||||
|
\fBresize_fsadm\fP: Use the old method of calling fsadm to handle the fs
|
||||||
|
(deprecated.) Warning: this option does not prevent lvreduce from destroying
|
||||||
|
file systems that are unmounted (or mounted if prompts are skipped.)
|
||||||
|
\fBignore\fP: Resize the LV without checking for or handling a file system.
|
||||||
|
Warning: using ignore when reducing the LV size may destroy the file system.
|
||||||
|
.
|
||||||
|
.HP
|
||||||
|
\fB--fsmode\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
Control file system mounting behavior for fs resize.
|
||||||
|
\fBmanage\fP: Mount or unmount the fs as needed to resize the fs,
|
||||||
|
and attempt to restore the original mount state at the end.
|
||||||
|
\fBnochange\fP: Do not mount or unmount the fs. If mounting or unmounting
|
||||||
|
is required to resize the fs, then do not resize the fs or the LV and fail
|
||||||
|
the command.
|
||||||
|
\fBoffline\fP: Unmount the fs if it is mounted, and resize the fs while it
|
||||||
|
is unmounted. If mounting is required to resize the fs, then do not resize
|
||||||
|
the fs or the LV and fail the command.
|
||||||
|
.
|
||||||
|
.HP
|
||||||
\fB-h\fP|\fB--help\fP
|
\fB-h\fP|\fB--help\fP
|
||||||
.br
|
.br
|
||||||
Display help text.
|
Display help text.
|
||||||
@ -410,9 +456,7 @@ Not used.
|
|||||||
.HP
|
.HP
|
||||||
\fB-n\fP|\fB--nofsck\fP
|
\fB-n\fP|\fB--nofsck\fP
|
||||||
.br
|
.br
|
||||||
Do not perform fsck before resizing filesystem when filesystem
|
Do not perform fsck when resizing the file system with --resizefs.
|
||||||
requires it. You may need to use --force to proceed with
|
|
||||||
this option.
|
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
\fB--nohints\fP
|
\fB--nohints\fP
|
||||||
@ -485,7 +529,10 @@ See \fBlvmreport\fP(7) for more information.
|
|||||||
.HP
|
.HP
|
||||||
\fB-r\fP|\fB--resizefs\fP
|
\fB-r\fP|\fB--resizefs\fP
|
||||||
.br
|
.br
|
||||||
Resize underlying filesystem together with the LV using \fBfsadm\fP(8).
|
Resize the fs using the fs-specific resize command.
|
||||||
|
May include mounting, unmounting, or running fsck. See --fsmode to control
|
||||||
|
mounting behavior, and --nofsck to disable fsck. See --fs for more options
|
||||||
|
(--resizefs is equivalent to --fs resize.)
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
\fB-L\fP|\fB--size\fP [\fB+\fP]\fISize\fP[m|UNIT]
|
\fB-L\fP|\fB--size\fP [\fB+\fP]\fISize\fP[m|UNIT]
|
||||||
|
@ -52,6 +52,10 @@ the options section.
|
|||||||
.br
|
.br
|
||||||
[ \fB--reportformat\fP \fBbasic\fP|\fBjson\fP|\fBjson_std\fP ]
|
[ \fB--reportformat\fP \fBbasic\fP|\fBjson\fP|\fBjson_std\fP ]
|
||||||
.br
|
.br
|
||||||
|
[ \fB--fs\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
|
[ \fB--fsmode\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
[ COMMON_OPTIONS ]
|
[ COMMON_OPTIONS ]
|
||||||
.ad b
|
.ad b
|
||||||
.RE
|
.RE
|
||||||
@ -179,6 +183,36 @@ Override various checks, confirmations and protections.
|
|||||||
Use with extreme caution.
|
Use with extreme caution.
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
|
\fB--fs\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
Control file system resizing when resizing an LV.
|
||||||
|
\fBchecksize\fP: Check the fs size and reduce the LV if the fs is not
|
||||||
|
using the reduced space (fs reduce is not needed.) If the reduced space
|
||||||
|
is used by the fs, then do not resize the fs or LV, and return an error.
|
||||||
|
(checksize only applies when reducing, and does nothing for extend.)
|
||||||
|
\fBresize\fP: Resize the fs by calling the fs-specific resize command.
|
||||||
|
This may also include mounting, unmounting, or running fsck. See --fsmode to
|
||||||
|
control mounting behavior, and --nofsck to disable fsck.
|
||||||
|
\fBresize_fsadm\fP: Use the old method of calling fsadm to handle the fs
|
||||||
|
(deprecated.) Warning: this option does not prevent lvreduce from destroying
|
||||||
|
file systems that are unmounted (or mounted if prompts are skipped.)
|
||||||
|
\fBignore\fP: Resize the LV without checking for or handling a file system.
|
||||||
|
Warning: using ignore when reducing the LV size may destroy the file system.
|
||||||
|
.
|
||||||
|
.HP
|
||||||
|
\fB--fsmode\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
Control file system mounting behavior for fs resize.
|
||||||
|
\fBmanage\fP: Mount or unmount the fs as needed to resize the fs,
|
||||||
|
and attempt to restore the original mount state at the end.
|
||||||
|
\fBnochange\fP: Do not mount or unmount the fs. If mounting or unmounting
|
||||||
|
is required to resize the fs, then do not resize the fs or the LV and fail
|
||||||
|
the command.
|
||||||
|
\fBoffline\fP: Unmount the fs if it is mounted, and resize the fs while it
|
||||||
|
is unmounted. If mounting is required to resize the fs, then do not resize
|
||||||
|
the fs or the LV and fail the command.
|
||||||
|
.
|
||||||
|
.HP
|
||||||
\fB-h\fP|\fB--help\fP
|
\fB-h\fP|\fB--help\fP
|
||||||
.br
|
.br
|
||||||
Display help text.
|
Display help text.
|
||||||
@ -207,9 +241,7 @@ Display long help text.
|
|||||||
.HP
|
.HP
|
||||||
\fB-n\fP|\fB--nofsck\fP
|
\fB-n\fP|\fB--nofsck\fP
|
||||||
.br
|
.br
|
||||||
Do not perform fsck before resizing filesystem when filesystem
|
Do not perform fsck when resizing the file system with --resizefs.
|
||||||
requires it. You may need to use --force to proceed with
|
|
||||||
this option.
|
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
\fB--nohints\fP
|
\fB--nohints\fP
|
||||||
@ -259,7 +291,10 @@ See \fBlvmreport\fP(7) for more information.
|
|||||||
.HP
|
.HP
|
||||||
\fB-r\fP|\fB--resizefs\fP
|
\fB-r\fP|\fB--resizefs\fP
|
||||||
.br
|
.br
|
||||||
Resize underlying filesystem together with the LV using \fBfsadm\fP(8).
|
Resize the fs using the fs-specific resize command.
|
||||||
|
May include mounting, unmounting, or running fsck. See --fsmode to control
|
||||||
|
mounting behavior, and --nofsck to disable fsck. See --fs for more options
|
||||||
|
(--resizefs is equivalent to --fs resize.)
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
\fB-L\fP|\fB--size\fP [\fB-\fP]\fISize\fP[m|UNIT]
|
\fB-L\fP|\fB--size\fP [\fB-\fP]\fISize\fP[m|UNIT]
|
||||||
|
@ -36,6 +36,10 @@ lvresize \(em Resize a logical volume
|
|||||||
\fB-l\fP|\fB--extents\fP [\fB+\fP|\fB-\fP]\fINumber\fP[PERCENT]
|
\fB-l\fP|\fB--extents\fP [\fB+\fP|\fB-\fP]\fINumber\fP[PERCENT]
|
||||||
.br
|
.br
|
||||||
\fB-f\fP|\fB--force\fP
|
\fB-f\fP|\fB--force\fP
|
||||||
|
.br
|
||||||
|
\fB--fs\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
\fB--fsmode\fP \fIString\fP
|
||||||
.br
|
.br
|
||||||
\fB-h\fP|\fB--help\fP
|
\fB-h\fP|\fB--help\fP
|
||||||
.br
|
.br
|
||||||
@ -109,6 +113,10 @@ Resize an LV by a specified size.
|
|||||||
.br
|
.br
|
||||||
[ \fB--poolmetadatasize\fP [\fB+\fP]\fISize\fP[m|UNIT] ]
|
[ \fB--poolmetadatasize\fP [\fB+\fP]\fISize\fP[m|UNIT] ]
|
||||||
.br
|
.br
|
||||||
|
[ \fB--fs\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
|
[ \fB--fsmode\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
[ COMMON_OPTIONS ]
|
[ COMMON_OPTIONS ]
|
||||||
.ad b
|
.ad b
|
||||||
.RE
|
.RE
|
||||||
@ -127,6 +135,10 @@ Resize an LV by specified PV extents.
|
|||||||
.ad l
|
.ad l
|
||||||
[ \fB-r\fP|\fB--resizefs\fP ]
|
[ \fB-r\fP|\fB--resizefs\fP ]
|
||||||
.br
|
.br
|
||||||
|
[ \fB--fs\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
|
[ \fB--fsmode\fP \fIString\fP ]
|
||||||
|
.br
|
||||||
[ COMMON_OPTIONS ]
|
[ COMMON_OPTIONS ]
|
||||||
.ad b
|
.ad b
|
||||||
.RE
|
.RE
|
||||||
@ -335,6 +347,36 @@ Override various checks, confirmations and protections.
|
|||||||
Use with extreme caution.
|
Use with extreme caution.
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
|
\fB--fs\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
Control file system resizing when resizing an LV.
|
||||||
|
\fBchecksize\fP: Check the fs size and reduce the LV if the fs is not
|
||||||
|
using the reduced space (fs reduce is not needed.) If the reduced space
|
||||||
|
is used by the fs, then do not resize the fs or LV, and return an error.
|
||||||
|
(checksize only applies when reducing, and does nothing for extend.)
|
||||||
|
\fBresize\fP: Resize the fs by calling the fs-specific resize command.
|
||||||
|
This may also include mounting, unmounting, or running fsck. See --fsmode to
|
||||||
|
control mounting behavior, and --nofsck to disable fsck.
|
||||||
|
\fBresize_fsadm\fP: Use the old method of calling fsadm to handle the fs
|
||||||
|
(deprecated.) Warning: this option does not prevent lvreduce from destroying
|
||||||
|
file systems that are unmounted (or mounted if prompts are skipped.)
|
||||||
|
\fBignore\fP: Resize the LV without checking for or handling a file system.
|
||||||
|
Warning: using ignore when reducing the LV size may destroy the file system.
|
||||||
|
.
|
||||||
|
.HP
|
||||||
|
\fB--fsmode\fP \fIString\fP
|
||||||
|
.br
|
||||||
|
Control file system mounting behavior for fs resize.
|
||||||
|
\fBmanage\fP: Mount or unmount the fs as needed to resize the fs,
|
||||||
|
and attempt to restore the original mount state at the end.
|
||||||
|
\fBnochange\fP: Do not mount or unmount the fs. If mounting or unmounting
|
||||||
|
is required to resize the fs, then do not resize the fs or the LV and fail
|
||||||
|
the command.
|
||||||
|
\fBoffline\fP: Unmount the fs if it is mounted, and resize the fs while it
|
||||||
|
is unmounted. If mounting is required to resize the fs, then do not resize
|
||||||
|
the fs or the LV and fail the command.
|
||||||
|
.
|
||||||
|
.HP
|
||||||
\fB-h\fP|\fB--help\fP
|
\fB-h\fP|\fB--help\fP
|
||||||
.br
|
.br
|
||||||
Display help text.
|
Display help text.
|
||||||
@ -363,9 +405,7 @@ Display long help text.
|
|||||||
.HP
|
.HP
|
||||||
\fB-n\fP|\fB--nofsck\fP
|
\fB-n\fP|\fB--nofsck\fP
|
||||||
.br
|
.br
|
||||||
Do not perform fsck before resizing filesystem when filesystem
|
Do not perform fsck when resizing the file system with --resizefs.
|
||||||
requires it. You may need to use --force to proceed with
|
|
||||||
this option.
|
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
\fB--nohints\fP
|
\fB--nohints\fP
|
||||||
@ -438,7 +478,10 @@ See \fBlvmreport\fP(7) for more information.
|
|||||||
.HP
|
.HP
|
||||||
\fB-r\fP|\fB--resizefs\fP
|
\fB-r\fP|\fB--resizefs\fP
|
||||||
.br
|
.br
|
||||||
Resize underlying filesystem together with the LV using \fBfsadm\fP(8).
|
Resize the fs using the fs-specific resize command.
|
||||||
|
May include mounting, unmounting, or running fsck. See --fsmode to control
|
||||||
|
mounting behavior, and --nofsck to disable fsck. See --fs for more options
|
||||||
|
(--resizefs is equivalent to --fs resize.)
|
||||||
.
|
.
|
||||||
.HP
|
.HP
|
||||||
\fB-L\fP|\fB--size\fP [\fB+\fP|\fB-\fP]\fISize\fP[m|UNIT]
|
\fB-L\fP|\fB--size\fP [\fB+\fP|\fB-\fP]\fISize\fP[m|UNIT]
|
||||||
|
Loading…
Reference in New Issue
Block a user