To increase the size of a Logical Volume, use the lvextend command.
After extending the Logical volume, you will need to increase the size of associated file system ,
# lvextend -L 1500M /dev/vgname/lvname
After it is necessary to increase the file system size to match.
# resize2fs -p /dev/vgname/lvname
-p option show the progress of the operation.
After extending the Logical volume, you will need to increase the size of associated file system ,
# lvextend -L 1500M /dev/vgname/lvname
After it is necessary to increase the file system size to match.
# resize2fs -p /dev/vgname/lvname
-p option show the progress of the operation.
Comments
Post a Comment