Changes between Version 15 and Version 16 of extend-disk-on-kvm-guest
- Timestamp:
- Nov 30, 2011, 5:17:48 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
extend-disk-on-kvm-guest
v15 v16 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 :106 The next step would be to assign the free space from the VG to the LV. That's what lvextend does. For example (size in GB is the new size you want): 107 107 108 108 {{{ 109 lvextend - l +100%FREE /dev/rest/data109 lvextend --size 50GB /dev/mapper/LVNAME 110 110 }}} 111 111 … … 115 115 116 116 {{{ 117 e2fsck -f /dev/ rest/data118 resize2fs /dev/ rest/data117 e2fsck -f /dev/mapper/LVNAME 118 resize2fs /dev/mapper/LVNAME 119 119 }}}