2008-10-08 16:50:13 +04:00
.TH LVS 8 "LVM TOOLS #VERSION#" "Sistina Software UK" \" -*- nroff -*-
2002-12-12 23:55:49 +03:00
.SH NAME
lvs \- report information about logical volumes
.SH SYNOPSIS
.B lvs
2011-11-08 16:16:53 +04:00
.RB [ \- \- aligned ]
2012-04-24 16:14:17 +04:00
.RB [ \- a | \- \- all ]
2011-11-08 16:16:53 +04:00
.RB [ \- d | \- \- debug ]
.RB [ \- h | \- ? | \- \- help ]
.RB [ \- \- ignorelockingfailure ]
.RB [ \- \- nameprefixes ]
.RB [ \- \- noheadings ]
.RB [ \- \- nosuffix ]
.RB [ \- o | \- \- options
.RI [ + ] Field [, Field ]]
.RB [ \- O | \- \- sort
2012-04-11 16:42:10 +04:00
.RI [ + | \- ] Key1 [,[ + | \- ] Key2 [,...]]]
2011-11-08 16:16:53 +04:00
.RB [ \- P | \- \- partial ]
.RB [ \- \- rows ]
.RB [ \- \- separator
.IR Separator ]
2012-04-24 16:14:17 +04:00
.RB [ \- \- segments ]
2011-11-08 16:16:53 +04:00
.RB [ \- \- unbuffered ]
.RB [ \- \- units
.IR hHbBsSkKmMgGtTpPeE ]
.RB [ \- \- unquoted ]
.RB [ \- v | \- \- verbose ]
.RB [ \- \- version ]
.RI [ VolumeGroupName
.RI [ VolumeGroupName ...]]
2002-12-12 23:55:49 +03:00
.SH DESCRIPTION
2004-11-12 18:59:09 +03:00
lvs produces formatted output about logical volumes.
2002-12-12 23:55:49 +03:00
.SH OPTIONS
2011-11-08 16:16:53 +04:00
See
.BR lvm (8)
for common options.
2002-12-12 23:55:49 +03:00
.TP
2012-04-24 16:14:17 +04:00
.B \- \- aligned
Use with \fB \- \- separator\fP to align the output columns.
.TP
2011-11-08 16:16:53 +04:00
.B \- \- all
2009-10-26 17:37:09 +03:00
Include information in the output about internal Logical Volumes that
are components of normally-accessible Logical Volumes, such as mirrors,
but which are not independently accessible (e.g. not mountable).
The names of such Logical Volumes are enclosed within square brackets
2012-04-11 16:42:10 +04:00
in the output. For example, after creating a mirror using
.B lvcreate -m1 --mirrorlog disk
, this option will reveal three internal Logical
2009-10-26 17:37:09 +03:00
Volumes, with suffixes mimage_0, mimage_1, and mlog.
.TP
2011-11-08 16:16:53 +04:00
.B \- \- nameprefixes
2009-01-20 20:10:44 +03:00
Add an "LVM2_" prefix plus the field name to the output. Useful
2012-04-11 16:42:10 +04:00
with \fB \- \- noheadings\fP to produce a list of field=value pairs that can
be used to set environment variables (for example, in
2011-11-08 16:16:53 +04:00
.BR udev (7)
rules).
2009-01-20 20:10:44 +03:00
.TP
2011-11-08 16:16:53 +04:00
.B \- \- noheadings
2002-12-12 23:55:49 +03:00
Suppress the headings line that is normally the first line of output.
Useful if grepping the output.
.TP
2011-11-08 16:16:53 +04:00
.B \- \- nosuffix
2012-04-11 16:42:10 +04:00
Suppress the suffix on output sizes. Use with \fB \- \- units\fP
(except h and H) if processing the output.
2002-12-12 23:55:49 +03:00
.TP
2011-11-08 16:16:53 +04:00
.BR \- o ", " \- \- options
2012-04-24 16:14:17 +04:00
Comma-separated ordered list of columns. Precede the list with '\fI +\fP '
to append to the default selection of columns instead of replacing it.
Cleanup pvs, vgs, and lvs "-o" section in man pages (rhbz 500861).
http://bugzilla.redhat.com/show_bug.cgi?id=500861
- Update list of fields/columns for each command (a few missing).
- Update list order to match "-o help" output (easier to verify field list)
- Add "{pv|vg|lv}_all" description.
- Move "-o help" sentence above column/field list.
New sample man page for lvs (pvs and vgs are similar):
-o, --options
Comma-separated ordered list of columns. Precede the list with ’+’ to append to the
default selection of columns instead of replacing it.
Use -o lv_all to select all logical volume columns, and -o seg_all to select all logical
segment columns.
Use -o help to view the full list of columns available.
Column names include: lv_uuid, lv_name, lv_attr, lv_major, lv_minor, lv_read_ahead,
lv_kernel_major, lv_kernel_minor, lv_kernel_read_ahead, lv_size, seg_count, origin, ori-
gin_size, snap_percent, copy_percent, move_pv, convert_lv, lv_tags, mirror_log, modules,
segtype, stripes, stripesize, regionsize, chunksize, seg_start, seg_start_pe, seg_size,
seg_tags, seg_pe_ranges, devices.
With --segments, any "seg_" prefixes are optional; otherwise any "lv_" prefixes are
optional. Columns mentioned in vgs (8) can also be chosen.
The lv_attr bits are:
2009-06-15 21:09:32 +04:00
.IP
2012-04-11 16:42:10 +04:00
Use \fB \- o lv_all\fP to select all logical volume columns,
and \fB \- o seg_all\fP
2009-06-30 22:39:31 +04:00
to select all logical volume segment columns.
Cleanup pvs, vgs, and lvs "-o" section in man pages (rhbz 500861).
http://bugzilla.redhat.com/show_bug.cgi?id=500861
- Update list of fields/columns for each command (a few missing).
- Update list order to match "-o help" output (easier to verify field list)
- Add "{pv|vg|lv}_all" description.
- Move "-o help" sentence above column/field list.
New sample man page for lvs (pvs and vgs are similar):
-o, --options
Comma-separated ordered list of columns. Precede the list with ’+’ to append to the
default selection of columns instead of replacing it.
Use -o lv_all to select all logical volume columns, and -o seg_all to select all logical
segment columns.
Use -o help to view the full list of columns available.
Column names include: lv_uuid, lv_name, lv_attr, lv_major, lv_minor, lv_read_ahead,
lv_kernel_major, lv_kernel_minor, lv_kernel_read_ahead, lv_size, seg_count, origin, ori-
gin_size, snap_percent, copy_percent, move_pv, convert_lv, lv_tags, mirror_log, modules,
segtype, stripes, stripesize, regionsize, chunksize, seg_start, seg_start_pe, seg_size,
seg_tags, seg_pe_ranges, devices.
With --segments, any "seg_" prefixes are optional; otherwise any "lv_" prefixes are
optional. Columns mentioned in vgs (8) can also be chosen.
The lv_attr bits are:
2009-06-15 21:09:32 +04:00
.IP
2012-04-11 16:42:10 +04:00
Use \fB \- o help\fP to view the full list of columns available.
Cleanup pvs, vgs, and lvs "-o" section in man pages (rhbz 500861).
http://bugzilla.redhat.com/show_bug.cgi?id=500861
- Update list of fields/columns for each command (a few missing).
- Update list order to match "-o help" output (easier to verify field list)
- Add "{pv|vg|lv}_all" description.
- Move "-o help" sentence above column/field list.
New sample man page for lvs (pvs and vgs are similar):
-o, --options
Comma-separated ordered list of columns. Precede the list with ’+’ to append to the
default selection of columns instead of replacing it.
Use -o lv_all to select all logical volume columns, and -o seg_all to select all logical
segment columns.
Use -o help to view the full list of columns available.
Column names include: lv_uuid, lv_name, lv_attr, lv_major, lv_minor, lv_read_ahead,
lv_kernel_major, lv_kernel_minor, lv_kernel_read_ahead, lv_size, seg_count, origin, ori-
gin_size, snap_percent, copy_percent, move_pv, convert_lv, lv_tags, mirror_log, modules,
segtype, stripes, stripesize, regionsize, chunksize, seg_start, seg_start_pe, seg_size,
seg_tags, seg_pe_ranges, devices.
With --segments, any "seg_" prefixes are optional; otherwise any "lv_" prefixes are
optional. Columns mentioned in vgs (8) can also be chosen.
The lv_attr bits are:
2009-06-15 21:09:32 +04:00
.IP
Column names include:
2012-04-24 16:13:29 +04:00
chunk_size,
convert_lv,
copy_percent,
data_lv,
devices,
2012-08-09 13:27:14 +04:00
discards,
2012-04-24 16:13:29 +04:00
lv_attr,
lv_host,
lv_kernel_major,
lv_kernel_minor,
lv_kernel_read_ahead,
lv_major,
lv_minor,
lv_name,
lv_path,
lv_read_ahead,
lv_size,
lv_tags,
lv_time,
lv_uuid,
metadata_lv,
mirror_log,
modules,
move_pv,
origin,
origin_size,
pool_lv,
region_size,
segtype,
seg_count,
seg_pe_ranges,
seg_size,
seg_start,
seg_start_pe,
seg_tags,
snap_percent,
stripes,
stripe_size,
2012-10-24 06:19:27 +04:00
sync_percent,
2012-04-24 16:13:29 +04:00
thin_count,
transaction_id,
zero.
2004-11-12 18:59:09 +03:00
.IP
2012-04-11 16:42:10 +04:00
With \fB \- \- segments\fP , any "seg_" prefixes are optional;
otherwise any "lv_" prefixes are optional. Columns mentioned in
2011-11-08 16:16:53 +04:00
.BR vgs (8)
2004-11-12 18:59:09 +03:00
can also be chosen.
.IP
2012-04-11 16:42:10 +04:00
The lv_attr bits are:
2004-11-12 18:59:09 +03:00
.RS
.IP 1 3
2010-01-13 04:48:38 +03:00
Volume type: (m)irrored, (M)irrored without initial sync, (o)rigin,
2011-09-23 23:21:53 +04:00
(O)rigin with merging snapshot, (r)aid, (R)aid without initial sync,
(s)napshot, merging (S)napshot, (p)vmove, (v)irtual,
mirror or raid (i)mage, mirror or raid (I)mage out-of-sync, mirror (l)og device,
under (c)onversion, thin (V)olume, (t)hin pool, (T)hin pool data, raid or
thin pool m(e)tadata
2004-11-12 18:59:09 +03:00
.IP 2 3
2012-01-12 20:58:43 +04:00
Permissions: (w)riteable, (r)ead-only, (R)ead-only activation of non-read-only
volume
2004-11-12 18:59:09 +03:00
.IP 3 3
2012-04-24 16:14:17 +04:00
Allocation policy: (a)nywhere, (c)ontiguous, (i)nherited, c(l)ing, (n)ormal
2004-11-12 18:59:09 +03:00
This is capitalised if the volume is currently locked against allocation
2011-11-08 16:16:53 +04:00
changes, for example during
.BR pvmove (8).
2004-11-12 18:59:09 +03:00
.IP 4 3
fixed (m)inor
.IP 5 3
2005-11-09 01:52:26 +03:00
State: (a)ctive, (s)uspended, (I)nvalid snapshot, invalid (S)uspended snapshot,
2012-01-21 02:03:03 +04:00
snapshot (m)erge failed, suspended snapshot (M)erge failed,
2005-11-09 01:52:26 +03:00
mapped (d)evice present without tables, mapped device present with (i)nactive table
2004-11-12 18:59:09 +03:00
.IP 6 3
device (o)pen
2011-09-09 00:55:39 +04:00
.IP 7 3
2012-04-11 16:42:10 +04:00
Target type: (m)irror, (r)aid, (s)napshot, (t)hin, (u)nknown, (v)irtual.
2011-09-09 00:55:39 +04:00
This groups logical volumes related to the same kernel target together. So,
for example, mirror images, mirror logs as well as mirrors themselves appear as
(m) if they use the original device-mapper mirror kernel driver; whereas the raid
equivalents using the md raid kernel driver all appear as (r).
Snapshots using the original device-mapper driver appear as (s); whereas
snapshots of thin volumes using the new thin provisioning driver appear as (t).
2011-09-09 05:15:18 +04:00
.IP 8 3
Newly-allocated data blocks are overwritten with blocks of (z)eroes before use.
2012-09-19 15:49:40 +04:00
.IP 9 3
(p)artial: One or more of the Physical Volumes this Logical Volume uses is
missing from the system.
2004-11-12 18:59:09 +03:00
.RE
2002-12-12 23:55:49 +03:00
.TP
2011-11-08 16:16:53 +04:00
.BR \- O ", " \- \- sort
2002-12-12 23:55:49 +03:00
Comma-separated ordered list of columns to sort by. Replaces the default
2012-04-11 16:42:10 +04:00
selection. Precede any column with '\fI \- \fP ' for a reverse sort on that column.
2002-12-12 23:55:49 +03:00
.TP
2011-11-08 16:16:53 +04:00
.B \- \- rows
2009-01-20 19:55:24 +03:00
Output columns as rows.
.TP
2012-04-24 16:14:17 +04:00
.B \- \- segments
Use default columns that emphasize segment information.
.TP
2011-11-08 16:16:53 +04:00
.B \- \- separator \fI Separator
2002-12-12 23:55:49 +03:00
String to use to separate each column. Useful if grepping the output.
.TP
2011-11-08 16:16:53 +04:00
.B \- \- unbuffered
2002-12-12 23:55:49 +03:00
Produce output immediately without sorting or aligning the columns properly.
.TP
2011-11-08 16:16:53 +04:00
.B \- \- units \fI hHbBsSkKmMgGtTpPeE
2009-07-07 23:28:57 +04:00
All sizes are output in these units: (h)uman-readable, (b)ytes, (s)ectors,
2012-04-11 16:42:10 +04:00
(k)ilobytes, (m)egabytes, (g)igabytes, (t)erabytes, (p)etabytes, (e)xabytes.
Capitalise to use multiples of 1000 (S.I.) instead of 1024. Can also specify
custom units e.g. \fB \- \- units 3M\fP
2009-01-20 20:39:07 +03:00
.TP
2011-11-08 16:16:53 +04:00
.B \- \- unquoted
2012-04-11 16:42:10 +04:00
When used with \fB \- \- nameprefixes\fP , output values in the field=value
pairs are not quoted.
2002-12-12 23:55:49 +03:00
.SH SEE ALSO
2008-01-10 21:35:51 +03:00
.BR lvm (8),
2004-11-12 18:59:09 +03:00
.BR lvdisplay (8),
2002-12-12 23:55:49 +03:00
.BR pvs (8),
.BR vgs (8)