[Ubuntu] How to fully delete LVM partition
How to remove LVM partitions, even when you get 'No volume groups found'; that means you should probably check 'pvs' and 'vgs'.
Removing LVM partitions during Ubuntu installation
- Alt+F2 to bring up CLI
- Hit 'Enter' in next screen to confirm
- Use 'lvscan' to locate LV's
- Also use:
- pvscan
- vgscan
- Also use:
- Use 'vgremove' <LVM Group Name>
- If that doesn't work, also try:
- lvremove </dev/sdx>
- pvremove </dev/sdx>
- If that doesn't work, also try:
Related articles