Changes between Version 14 and Version 15 of extend-disk-on-kvm-guest
- Timestamp:
- Sep 22, 2011, 9:54:19 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
extend-disk-on-kvm-guest
v14 v15 104 104 And now your volume group should show additional free space. 105 105 106 The next step would be to assign the free space from the VG to the LV. That's what lvextend does. For example: 107 108 {{{ 109 lvextend -l +100%FREE /dev/rest/data 110 }}} 111 112 will add 100% of the VG's free space to the specified LV. 113 114 Finally you would normally need to resize the filesystem as well. This is done for ext2/ext3/ext4 like that: 115 116 {{{ 117 e2fsck -f /dev/rest/data 118 resize2fs /dev/rest/data 119 }}}