mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
34fadac485
e.g. lvcreate -l 100%FREE to create an LV using all available space. lvextend -l 50%LV to increase an LV by 50% of its existing size. lvcreate -l 20%VG to create an LV using 20% of the total VG size.
62 lines
2.4 KiB
Groff
62 lines
2.4 KiB
Groff
.TH LVEXTEND 8 "LVM TOOLS" "Sistina Software UK" \" -*- nroff -*-
|
|
.SH NAME
|
|
lvextend \- extend the size of a logical volume
|
|
.SH SYNOPSIS
|
|
.B lvextend
|
|
[\-\-alloc AllocationPolicy]
|
|
[\-A/\-\-autobackup y/n] [\-d/\-\-debug] [\-h/\-?/\-\-help]
|
|
[\-i/\-\-stripes Stripes [\-I/\-\-stripesize StripeSize]]
|
|
{\-l/\-\-extents [+]LogicalExtentsNumber[%{VG|LV|FREE}] |
|
|
\-L/\-\-size [+]LogicalVolumeSize[kKmMgGtT]}
|
|
[\-t/\-\-test]
|
|
[\-v/\-\-verbose] LogicalVolumePath [PhysicalVolumePath...]
|
|
.SH DESCRIPTION
|
|
lvextend allows you to extend the size of a logical volume.
|
|
Extension of snapshot logical volumes (see
|
|
.B lvcreate(8)
|
|
for information to create snapshots) is supported as well.
|
|
But to change the number of copies in a mirrored logical
|
|
volume use
|
|
.BR lvconvert (8).
|
|
.SH OPTIONS
|
|
See \fBlvm\fP for common options.
|
|
.TP
|
|
.I \-l, \-\-extents [+]LogicalExtentsNumber[%{VG|LV|FREE}]
|
|
Extend or set the logical volume size in units of logical extents.
|
|
With the + sign the value is added to the actual size
|
|
of the logical volume and without it, the value is taken as an absolute one.
|
|
The number can also be expressed as a percentage of the total space
|
|
in the Volume Group with the suffix %VG or relative to the existing
|
|
size of the Logical Volume with the suffix %LV or as a percentage of the remaining
|
|
free space in the Volume Group with the suffix %FREE.
|
|
.TP
|
|
.I \-L, \-\-size [+]LogicalVolumeSize[kKmMgGtT]
|
|
Extend or set the logical volume size in units in units of megabytes.
|
|
A size suffix of M for megabytes, G for gigabytes or T for terabytes is
|
|
optional. With the + sign the value is added to the actual size
|
|
of the logical volume and without it, the value is taken as an absolute one.
|
|
.TP
|
|
.I \-i, \-\-stripes Stripes
|
|
Gives the number of stripes for the extension.
|
|
Not applicable to LVs using the original metadata LVM format, which must
|
|
use a single value throughout.
|
|
.TP
|
|
.I \-I, \-\-stripesize StripeSize
|
|
Gives the number of kilobytes for the granularity of the stripes.
|
|
Not applicable to LVs using the original metadata LVM format, which must
|
|
use a single value throughout.
|
|
.br
|
|
StripeSize must be 2^n (n = 2 to 9)
|
|
.SH Examples
|
|
"lvextend -L +54 /dev/vg01/lvol10 /dev/sdk3" tries to extend the size of
|
|
that logical volume by 54MB on physical volume /dev/sdk3.
|
|
This is only possible if /dev/sdk3 is a member of volume group vg01 and
|
|
there are enough free physical extents in it.
|
|
.SH SEE ALSO
|
|
.BR lvm (8),
|
|
.BR lvcreate (8),
|
|
.BR lvconvert (8),
|
|
.BR lvreduce (8),
|
|
.BR lvresize (8),
|
|
.BR lvchange (8)
|