Sorry if it's an obvious question, but here's the deal: I have a notebook with dual boot (Ubuntu 12.04 + Win7) and an extra NTFS partition for general storage.
I want to wipe out all of it and do a clean installation of only Ubuntu 16.04. How should I proceed? Just booting up Ubuntu Live DVD and choosing "Erase disk and install Ubuntu" will delete/format all my partitions and install a fresh Ubuntu?
TL;DR: I want to start from fresh and wipe all my partitions table (format and delete them) to install Ubuntu 16.04.
dd
for the whole disk (e.g./dev/sda
), not for every single partition (e.g./dev/sda1
). How long it would take depends on your drive's size and write speed. It can take up to a few hours. If you don't need a secure wipe, simply let the Ubuntu installer erase the disk and take care of the partitioning. If you want to do it yourself though, use GParted from the Ubuntu live system and tell it to create a new partition table on the disk. That will invalidate all partitioning and formatting info and make the whole disk unpartitioned, but without overwriting the data area. – Byte Commander Sep 14 '16 at 23:19