2001-09-25 16:49:28 +04:00
/*
* Copyright ( C ) 2001 Sistina Software
*
* LVM is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 , or ( at your option )
* any later version .
*
* LVM is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with LVM ; see the file COPYING . If not , write to
* the Free Software Foundation , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*
*/
xx ( e2fsadm ,
" Resize logical volume and ext2 filesystem " ,
" e2fsadm "
2001-12-03 23:23:53 +03:00
" [-d|--debug] " " [-h|--help] " " [-n|--nofsck] " " \n "
" \t {[-l|--extents] [+|-]LogicalExtentsNumber | " " \n "
" \t [-L|--size] [+|-]LogicalVolumeSize[kKmMgGtT]} " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t LogicalVolumePath " " \n " ,
2001-09-25 16:49:28 +04:00
extents_ARG , size_ARG , nofsck_ARG , test_ARG )
xx ( help ,
" Display help for commands " ,
2001-12-03 23:23:53 +03:00
" help <command> " " \n " )
2001-09-25 16:49:28 +04:00
2001-10-08 22:44:22 +04:00
/*********
2001-09-25 16:49:28 +04:00
xx ( lvactivate ,
" Activate logical volume on given partition(s) " ,
2001-10-04 14:13:07 +04:00
" lvactivate "
2001-09-25 16:49:28 +04:00
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-v/--verbose] \n "
2001-10-04 14:13:07 +04:00
" Logical Volume(s) \n " )
2001-10-08 22:44:22 +04:00
* * * * * * * * * * */
2001-09-25 16:49:28 +04:00
xx ( lvchange ,
" Change the attributes of logical volume(s) " ,
" lvchange \n "
" \t [-A/--autobackup y/n] \n "
" \t [-a/--available y/n] \n "
" \t [-C/--contiguous y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2002-02-01 20:54:39 +03:00
" \t [-M/--persistent y/n] [--minor minor] \n "
2002-01-29 20:23:33 +03:00
" \t [-P/--partial] " " \n "
2001-09-25 16:49:28 +04:00
" \t [-p/--permission r/rw] \n "
" \t [-r/--readahead ReadAheadSectors] \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
" \t LogicalVolume[Path] [LogicalVolume[Path]...] \n " ,
2002-02-11 14:43:17 +03:00
autobackup_ARG , available_ARG , contiguous_ARG ,
2002-02-01 20:54:39 +03:00
minor_ARG , persistent_ARG , partial_ARG ,
2001-11-28 21:03:11 +03:00
permission_ARG , readahead_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvcreate ,
" Create a logical volume " ,
2002-02-11 14:43:17 +03:00
" lvcreate " " \n "
2002-02-18 13:59:51 +03:00
" \t [-A|--autobackup {y|n}] \n "
" \t [-c|--chunksize] \n "
" \t [-C|--contiguous {y|n}] \n "
" \t [-d|--debug] \n "
" \t [-h|--help] \n "
" \t [-i|--stripes Stripes [-I|--stripesize StripeSize]] \n "
" \t {-l|--extents LogicalExtentsNumber | \n "
" \t -L|--size LogicalVolumeSize[kKmMgGtT]} \n "
2002-02-01 20:54:39 +03:00
" \t [-M|--persistent {y|n}] [--minor minor] \n "
2002-02-18 13:59:51 +03:00
" \t [-n|--name LogicalVolumeName] \n "
" \t [-p|--permission {r|rw}] \n "
" \t [-r|--readahead ReadAheadSectors] \n "
" \t [-s|--snapshot] \n "
" \t [-t|--test] \n "
" \t [-v|--verbose] \n "
" \t [-Z|--zero {y|n}] \n "
" \t [--version] \n "
" \t VolumeGroupName [PhysicalVolumePath...] \n \n " ,
2001-12-03 23:23:53 +03:00
2002-04-24 22:20:51 +04:00
autobackup_ARG , contiguous_ARG , extents_ARG , minor_ARG , name_ARG ,
2002-02-18 13:59:51 +03:00
permission_ARG , persistent_ARG , readahead_ARG , size_ARG ,
snapshot_ARG , stripes_ARG , stripesize_ARG , test_ARG , zero_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvdisplay ,
" Display information about a logical volume " ,
" lvdisplay \n "
" \t [-c/--colon] \n "
" \t [-d/--debug] \n "
" \t [-D/--disk] \n "
" \t [-h/-?/--help] \n "
2001-12-03 23:23:53 +03:00
" \t [-m/--maps] \n "
2002-01-30 18:33:12 +03:00
" \t [-P/--partial] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-v/--verbose] \n "
2001-09-25 16:49:28 +04:00
" \t LogicalVolume[Path] [LogicalVolume[Path]...] \n " ,
2002-01-30 18:33:12 +03:00
colon_ARG , disk_ARG , maps_ARG , partial_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvextend ,
" Add space to a logical volume " ,
" lvextend \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2001-11-27 16:42:37 +03:00
" \t [-i|--stripes Stripes [-I|--stripesize StripeSize]] \n "
2001-09-25 16:49:28 +04:00
" \t {-l/--extents [+]LogicalExtentsNumber | \n "
" \t -L/--size [+]LogicalVolumeSize[kKmMgGtT]} \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
" \t LogicalVolume[Path] [ PhysicalVolumePath... ] \n " ,
2001-11-28 21:03:11 +03:00
autobackup_ARG , extents_ARG , size_ARG , stripes_ARG , stripesize_ARG ,
test_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvmchange ,
2001-12-03 23:23:53 +03:00
" With the device mapper, this is obsolete and does nothing. " ,
2002-02-11 14:43:17 +03:00
" lvmchange \n "
2001-09-25 16:49:28 +04:00
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-R/--reset] \n "
" \t [-v/--verbose] \n " ,
2001-12-03 23:23:53 +03:00
reset_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvmdiskscan ,
" List devices that may be used as physical volumes " ,
" lvmdiskscan \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2002-02-05 17:31:57 +03:00
" \t [-l/--lvmpartition] \n " ,
2001-09-25 16:49:28 +04:00
lvmpartition_ARG )
xx ( lvmsadc ,
" Collect activity data " ,
" lvmsadc \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-v/--verbose] \n "
" \t [LogFilePath] \n " )
xx ( lvmsar ,
" Create activity report " ,
" lvmsar \n "
" \t [-d/--debug] \n "
" \t [-f/--full] \n "
" \t [-h/-?/--help] \n "
" \t [-s/--stdin] \n "
" \t [-v/--verbose] \n "
" \t LogFilePath \n " ,
full_ARG , stdin_ARG )
xx ( lvreduce ,
" Reduce the size of a logical volume " ,
" lvreduce \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-f/--force] \n "
" \t [-h/-?/--help] \n "
" \t {-l/--extents [-]LogicalExtentsNumber | \n "
" \t -L/--size [-]LogicalVolumeSize[kKmMgGtT]} \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
" \t LogicalVolume[Path] \n " ,
autobackup_ARG , force_ARG , extents_ARG ,
2001-11-28 21:03:11 +03:00
size_ARG , test_ARG , yes_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvremove ,
" Remove logical volume(s) from the system " ,
" lvremove \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-f/--force] \n "
" \t [-h/-?/--help] \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
" \t LogicalVolume[Path] [LogicalVolume[Path]...] \n " ,
2001-11-28 21:03:11 +03:00
autobackup_ARG , force_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( lvrename ,
" Rename a logical volume " ,
" lvrename "
2001-12-03 23:23:53 +03:00
" \t [-A|--autobackup {y|n}] " " \n "
" \t [-d|--debug] " " \n "
" \t [-h|--help] " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t { OldLogicalVolumePath NewLogicalVolumePath | " " \n "
" \t VolumeGroupName OldLogicalVolumeName NewLogicalVolumeName } \n " ,
2001-09-25 16:49:28 +04:00
2001-11-28 21:03:11 +03:00
autobackup_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
2001-11-13 17:17:50 +03:00
xx ( lvresize ,
" Resize a logical volume " ,
" lvresize \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2001-11-27 16:42:37 +03:00
" \t [-i|--stripes Stripes [-I|--stripesize StripeSize]] \n "
2001-11-13 17:17:50 +03:00
" \t {-l/--extents [+/-]LogicalExtentsNumber | \n "
" \t -L/--size [+/-]LogicalVolumeSize[kKmMgGtT]} \n "
2001-11-28 21:03:11 +03:00
" \t [-t|--test] \n "
2001-11-13 17:17:50 +03:00
" \t [-v/--verbose] \n "
" \t LogicalVolume[Path] [ PhysicalVolumePath... ] \n " ,
2001-11-28 21:03:11 +03:00
autobackup_ARG , extents_ARG , size_ARG , stripes_ARG , stripesize_ARG ,
test_ARG )
2001-11-13 17:17:50 +03:00
2001-09-25 16:49:28 +04:00
xx ( lvscan ,
" List all logical volumes in all volume groups " ,
2001-12-03 23:23:53 +03:00
" lvscan " " \n "
" \t [-b|--blockdevice] " " \n "
" \t [-d|--debug] " " \n "
2002-01-07 12:05:31 +03:00
" \t [-D|--disk] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-h|--help] " " \n "
2002-04-30 21:12:37 +04:00
" \t [-P|--partial] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-v|--verbose] " " \n "
" \t [--version] \n " ,
2001-09-25 16:49:28 +04:00
2002-04-30 21:12:37 +04:00
blockdevice_ARG , disk_ARG , partial_ARG )
2001-09-25 16:49:28 +04:00
xx ( pvchange ,
" Change attributes of physical volume(s) " ,
" pvchange \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-v/--verbose] \n "
" \t [-a/--all] \n "
2001-11-28 21:03:11 +03:00
" \t [-t|--test] \n "
2002-01-10 18:09:51 +03:00
" \t [-x/--allocatable y/n] \n "
2001-09-25 16:49:28 +04:00
" \t [PhysicalVolumePath...] \n " ,
2002-01-10 18:09:51 +03:00
all_ARG , autobackup_ARG , allocatable_ARG , allocation_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( pvcreate ,
" Initialize physical volume(s) for use by LVM " ,
2001-12-03 23:23:53 +03:00
" pvcreate " " \n "
" \t [-d|--debug] " " \n "
" \t [-f[f]|--force [--force]] " " \n "
" \t [-h|--help] " " \n "
" \t [-y|--yes] " " \n "
2002-02-15 04:26:16 +03:00
" \t [-s|--size PhysicalVolumeSize[kKmMgGtT] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-t|--test] " " \n "
2002-01-16 21:10:08 +03:00
" \t [-u|--uuid uuid] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t PhysicalVolume [PhysicalVolume...] \n " ,
2001-09-25 16:49:28 +04:00
2002-02-15 04:26:16 +03:00
force_ARG , test_ARG , physicalvolumesize_ARG , uuidstr_ARG , yes_ARG )
2001-09-25 16:49:28 +04:00
xx ( pvdata ,
" Display the on-disk metadata for physical volume(s) " ,
2001-12-03 23:23:53 +03:00
" pvdata " " \n "
" \t [-a|--all] " " \n "
" \t [-d|--debug] " " \n "
" \t [-E|--physicalextent] " " \n "
" \t [-h|--help] " " \n "
" \t [-L|--logicalvolume] " " \n "
" \t [-P[P]|--physicalvolume [--physicalvolume]] " " \n "
" \t [-U|--uuidlist] " " \n "
" \t [-v[v]|--verbose [--verbose]] " " \n "
" \t [-V|--volumegroup] " " \n "
" \t [--version] " " \n "
" \t PhysicalVolume [PhysicalVolume...] \n " ,
2001-09-25 16:49:28 +04:00
all_ARG , logicalextent_ARG , physicalextent_ARG ,
physicalvolume_ARG , uuidlist_ARG , volumegroup_ARG )
xx ( pvdisplay ,
" Display various attributes of logical volume(s) " ,
" pvdisplay \n "
" \t [-c/--colon] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2001-12-03 23:23:53 +03:00
" \t [-m/--maps] \n "
2001-09-25 16:49:28 +04:00
" \t [-s/--short] \n "
2001-12-03 23:23:53 +03:00
" \t [-v/--verbose] \n "
2001-09-25 16:49:28 +04:00
" \t PhysicalVolumePath [PhysicalVolumePath...] \n " ,
2001-12-03 23:23:53 +03:00
colon_ARG , maps_ARG , short_ARG )
2001-09-25 16:49:28 +04:00
xx ( pvmove ,
" Move extents from one physical volume to another " ,
" pvmove "
" [-A|--autobackup {y|n}] "
" [-d|--debug] "
" [-f|--force] "
" [-h|--help] \n \t "
" [-t|--test] "
2001-12-03 23:23:53 +03:00
" [-v|--verbose] "
2001-09-25 16:49:28 +04:00
" [--version] \n \t "
" [{-n|--name} LogicalVolume[:LogicalExtent[-LogicalExtent]...]] \n \t "
" SourcePhysicalVolume[:PhysicalExtent[-PhysicalExtent]...]} \n \t "
" [DestinationPhysicalVolume[:PhysicalExtent[-PhysicalExtent]...]...] \n " ,
autobackup_ARG , force_ARG , name_ARG , test_ARG )
2002-02-25 18:32:58 +03:00
xx ( pvresize ,
" Resize a physical volume in use by a volume group " ,
" pvmove "
" [-A|--autobackup {y|n}] "
" [-d|--debug] "
" [-h|--help] \n \t "
" [-s|--size PhysicalVolumeSize[kKmMgGtT] " " \n "
" [-v|--verbose] "
" [--version] \n \t "
" \t PhysicalVolumePath [PhysicalVolumePath...] \n " ,
autobackup_ARG , physicalvolumesize_ARG )
2001-09-25 16:49:28 +04:00
xx ( pvscan ,
" List all physical volumes " ,
2001-12-03 23:23:53 +03:00
" pvscan " " \n "
" \t [-d|--debug] " " \n "
" \t {-e|--exported | -n/--novolumegroup} " " \n "
" \t [-h|--help] " " \n "
2002-04-30 21:12:37 +04:00
" \t [-P|--partial] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-s|--short] " " \n "
" \t [-u|--uuid] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] \n " ,
2001-09-25 16:49:28 +04:00
2002-04-30 21:12:37 +04:00
exported_ARG , novolumegroup_ARG , partial_ARG , short_ARG , uuid_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgcfgbackup ,
" Backup volume group configuration(s) " ,
2001-12-03 23:23:53 +03:00
" vgcfgbackup " " \n "
" \t [-d|--debug] " " \n "
2002-01-09 22:16:48 +03:00
" \t [-f|--file filename] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-h|--help] " " \n "
" \t [-v|--verbose] " " \n "
" \t [-V|--version] " " \n "
2001-12-20 19:05:14 +03:00
" \t [VolumeGroupName...] \n " ,
2002-01-07 12:05:31 +03:00
file_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgcfgrestore ,
" Restore volume group configuration " ,
2001-12-03 23:23:53 +03:00
" vgcfgrestore " " \n "
" \t [-d|--debug] " " \n "
2002-01-09 22:16:48 +03:00
" \t [-f|--file filename] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-l[l]|--list [--list]] " " \n "
" \t [-n|--name VolumeGroupName] " " \n "
" \t [-h|--help] " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
2002-01-16 00:28:04 +03:00
" \t VolumeGroupName " ,
2001-09-25 16:49:28 +04:00
2002-01-16 00:28:04 +03:00
file_ARG , list_ARG , name_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgchange ,
" Change volume group attributes " ,
2001-12-03 23:23:53 +03:00
" vgchange " " \n "
" \t [-A|--autobackup {y|n}] " " \n "
2002-01-29 20:23:33 +03:00
" \t [-P|--partial] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-d|--debug] " " \n "
" \t [-h|--help] " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t {-a|--available {y|n} | " " \n "
2002-01-10 18:09:51 +03:00
" \t -x|--resizeable {y|n} | " " \n "
2001-12-03 23:23:53 +03:00
" \t -l|--logicalvolume MaxLogicalVolumes} " " \n "
" \t [VolumeGroupName...] \n " ,
2001-09-25 16:49:28 +04:00
2002-01-29 20:23:33 +03:00
autobackup_ARG , available_ARG , logicalvolume_ARG , partial_ARG ,
2002-02-11 14:43:17 +03:00
resizeable_ARG , resizable_ARG , allocation_ARG ,
2001-11-28 21:03:11 +03:00
test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgck ,
" Check the consistency of volume group(s) " ,
" vgck "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-v/--verbose] \n "
" \t [VolumeGroupName...] \n " )
xx ( vgcreate ,
" Create a volume group " ,
2001-12-03 23:23:53 +03:00
" vgcreate " " \n "
" \t [-A|--autobackup {y|n}] " " \n "
" \t [-d|--debug] " " \n "
2002-04-24 22:20:51 +04:00
" \t [-h|--help] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-l|--maxlogicalvolumes MaxLogicalVolumes] " " \n "
2002-04-24 22:20:51 +04:00
" \t [-M|--metadatatype lvm1/text] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-p|--maxphysicalvolumes MaxPhysicalVolumes] " " \n "
" \t [-s|--physicalextentsize PhysicalExtentSize[kKmMgGtT]] " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t VolumeGroupName PhysicalVolume [PhysicalVolume...] \n " ,
2001-09-25 16:49:28 +04:00
autobackup_ARG , maxlogicalvolumes_ARG , maxphysicalvolumes_ARG ,
2002-04-24 22:20:51 +04:00
metadatatype_ARG , physicalextentsize_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgdisplay ,
" Display volume group information " ,
2001-12-03 23:23:53 +03:00
" vgdisplay " " \n "
" \t [-c|--colon | -s|--short | -v|--verbose] " " \n "
" \t [-d|--debug] " " \n "
" \t [-h|--help] " " \n "
2002-01-30 18:33:12 +03:00
" \t [-P|--partial] " " \n "
2001-12-03 23:23:53 +03:00
" \t [-A|--activevolumegroups | [-D|--disk] " " \n "
2002-01-30 18:33:12 +03:00
" \t [--version] " " \n "
2001-12-03 23:23:53 +03:00
" \t [VolumeGroupName...] ] \n " ,
2001-09-25 16:49:28 +04:00
2002-01-30 18:33:12 +03:00
activevolumegroups_ARG , colon_ARG , disk_ARG , short_ARG , partial_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgexport ,
" Unregister volume group(s) from the system " ,
2001-12-03 23:23:53 +03:00
" vgexport " " \n "
" \t [-a|--all] " " \n "
" \t [-d|--debug] " " \n "
" \t [-h|--help] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t VolumeGroupName [VolumeGroupName...] \n " ,
2001-09-25 16:49:28 +04:00
2001-11-28 21:03:11 +03:00
all_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgextend ,
" Add physical volumes to a volume group " ,
" vgextend \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
2001-12-03 23:23:53 +03:00
" \t VolumeGroupName PhysicalDevicePath [PhysicalDevicePath...] \n " ,
2001-09-25 16:49:28 +04:00
2001-11-28 21:03:11 +03:00
autobackup_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgimport ,
" Register exported volume group with system " ,
2001-12-03 23:23:53 +03:00
" vgimport " " \n "
2002-01-29 22:19:37 +03:00
" \t [-a/--all] \n "
2001-12-03 23:23:53 +03:00
" \t [-d|--debug] " " \n "
" \t [-f|--force] " " \n "
" \t [-h|--help] " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
2002-01-29 22:19:37 +03:00
" \t VolumeGroupName... " " \n " ,
2001-09-25 16:49:28 +04:00
2002-01-29 22:19:37 +03:00
all_ARG , force_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgmerge ,
" Merge volume groups " ,
" vgmerge \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-l/--list] \n "
" \t [-t/--test] \n "
" \t [-v/--verbose] \n "
" \t DestinationVolumeGroupName SourceVolumeGroupName \n " ,
autobackup_ARG , list_ARG , test_ARG )
xx ( vgmknodes ,
" Create the special files for volume group devices in /dev " ,
" vgmknodes \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
" \t [-v/--verbose] \n "
" \t [VolumeGroupName...] \n " )
xx ( vgreduce ,
" Remove physical volume(s) from a volume group " ,
" vgreduce \n "
" \t [-a/--all] \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
" \t VolumeGroupName \n "
" \t [PhysicalVolumePath...] \n " ,
2001-11-28 21:03:11 +03:00
all_ARG , autobackup_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgremove ,
" Remove volume group(s) " ,
" vgremove \n "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
2001-11-28 21:03:11 +03:00
" \t VolumeGroupName [VolumeGroupName...] \n " ,
test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgrename ,
" Rename a volume group " ,
" vgrename \n "
" \t [-A/--autobackup y/n] \n "
" \t [-d/--debug] \n "
2001-10-08 22:44:22 +04:00
" \t [-f/--force] \n "
2001-09-25 16:49:28 +04:00
" \t [-h/-?/--help] \n "
2001-11-28 21:03:11 +03:00
" \t [-t/--test] \n "
2001-09-25 16:49:28 +04:00
" \t [-v/--verbose] \n "
2001-12-03 23:23:53 +03:00
" \t OldVolumeGroupPath NewVolumeGroupPath | \n "
2001-09-25 16:49:28 +04:00
" \t OldVolumeGroupName NewVolumeGroupName \n " ,
2001-11-28 21:03:11 +03:00
autobackup_ARG , force_ARG , test_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgscan ,
" Search for all volume groups " ,
" vgscan "
" \t [-d/--debug] \n "
" \t [-h/-?/--help] \n "
2002-04-30 21:12:37 +04:00
" \t [-P/--partial] " " \n "
" \t [-v/--verbose] \n " ,
partial_ARG )
2001-09-25 16:49:28 +04:00
xx ( vgsplit ,
" Move physical volumes into a new volume group " ,
2001-12-03 23:23:53 +03:00
" vgsplit " " \n "
" \t [-A|--autobackup {y|n}] " " \n "
" \t [-d|--debug] " " \n "
" \t [-h|--help] " " \n "
" \t [-l|--list] " " \n "
" \t [-t|--test] " " \n "
" \t [-v|--verbose] " " \n "
" \t [--version] " " \n "
" \t ExistingVolumeGroupName NewVolumeGroupName " " \n "
" \t PhysicalVolumePath [PhysicalVolumePath...] \n " ,
2001-09-25 16:49:28 +04:00
autobackup_ARG , list_ARG , test_ARG )
2002-01-17 19:39:24 +03:00
xx ( version ,
" Display software and driver version information " ,
" version \n " )