Changes between Version 26 and Version 27 of extend-disk-on-kvm-guest
- Timestamp:
- Nov 21, 2018, 2:13:11 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
extend-disk-on-kvm-guest
v26 v27 78 78 }}} 79 79 80 Note carefully the start sector for the last partition. You will need this exact number in the step below.81 80 82 Delete the last partition, and re-create it with a higher end sector (yes, you can do this without destroying the data on the disk). Replace STARTSECTOR with the start sector of the output from the command above (including the s after the number). Specifying -1 as the end sector means go as far to the end as possible. If you get a message saying that the sector you requested is not possible, accept a different one, you can safely say yes.81 Resize the partition. Specifying -1 as the end sector means go as far to the end as possible. If you get a message saying that the sector you requested is not possible, accept a different one, you can safely say yes. 83 82 84 83 Also - you will likely get a scary warning about the partitions being in use. Press "I" to ignore the warning. … … 92 91 {{{ 93 92 unit s 94 rm 2 95 mkpart primary STARTSECTOR -1 96 toggle 2 lvm 93 resize 2 -1 97 94 }}} 98 95