Installation guide

Table Of Contents
lvreduce -l -3 vg00/lvol1
4.4. Changing the Parameters of a Logical Volume Group
To change the parameters of a logical volume, use the lvchange command. For a listing of the
parameters you can change, see the lvchange(8) man page.
You can use the lvchange command to activate and deactivate logical volumes. To activate and
deactivate all the logical volumes in a volume group at the same time, use the vgchange com-
mand, as described in Section 3.6, “Changing the Parameters of a Volume Group”.
The following command changes the permission on volume lvol1 in volume group vg00 to be
read-only.
lvchange -pr vg00/lvol1
4.5. Renaming Logical Volumes
To rename an existing logical volume, use the lvrename command.
Either of the following commands renames logical volume lvold in volume group vg02 to lvnew.
lvrename /dev/vg02/lvold /dev/vg02/lvnew
lvrename vg02 lvold lvnew
For more information on activating logical volumes on individual nodes in a cluster, see Sec-
tion 8, “Activating Logical Volumes on Individual Nodes in a Cluster”.
4.6. Removing Logical Volumes
To remove an inactive logical volume, use the lvremove command. You must close a logical
volume with the umount command before it can be removed. In addition, in a clustered environ-
ment you must deactivate a logical volume before it can be removed.
If the logical volume is currently mounted, unmount the volume before removing it.
The following command removes the logical volume /dev/testvg/testlv. from the volume group
testvg. Note that in this case the logical volume has not been deactivated.
[root@tng3-1 lvm]# lvremove /dev/testvg/testlv
Do you really want to remove active logical volume "testlv"? [y/n]: y
Logical volume "testlv" successfully removed
You could explicitly deactivate the logical volume before removing it with the lvchange -an com-
mand, in which case you would not see the prompt verifying whether you want to remove an
active logical volume.
4.7. Displaying Logical Volumes
4.4. Changing the Parameters of a Logical Volume Group
33