Originally Posted by
jdavidroberts
I am trying to blow away an installation of Windows 11 Home on my daughter's old laptop and replace it with Ubuntu Desktop. The Ubuntu installer says that Bitlocker is installed and forces me to reboot into Windows to turn off Bitlocker.
In Windows, amazingly, there is no way to turn off Bitlocker. I am logged in as administrator and yet no way to turn it off. I also can't find an option to uninstall Windows. And yes, the Windows UI says that I am logged in as an Administrator.
I've searched a ton onlinrives that had pre-existing Volume managers, such ase and gone in a lot of circles. The Ubuntu documentation I found suggests it IS an option to just reformat the whole drive and throw away all the encrypted data. I would love to do this. But the Ubuntu install doesn't seem to offer it. When I choose to overwrite, with or without LVM, it takes me to a page where the only option is to reboot to Windows and turn off Bitlocker. If I go into the advanced options, there doesn't seem to be a way to select the main partition to install Ubuntu on.
What am I missing? Thanks.
In Windows, if you open the 'Control Panel' > Search for Bit Locker . Under that section there are options to "suspend bitlocker". "Suspend BitLocker" turns it off. This is what I suggest to people if they are going to install alongside of Windows with it having bitlocker.
Another way is to zero the drive. This is what I do for encrypted drives such as Bitlocker or LUKS), Volume Managers such as LVM2 or ZFS, or had software RAID such as mdadm. The way I do that is to boot from an Ubuntu LiveUSB > Use "Try". > Open a terminal session, then do: The example give is if /dev/ada is the disk I want to zero...)
Code:
sudo su -
blkdiscard -f /dev/sda
wipefs -a /dev/sda
sgdisk --zap-all /dev/sda
Everything will be gone, inside and outside the, and including the partitions & partition tables. It will be clean, and ready for any kind of install.
Then just start up the installer and you can do whatever you want on that clean disk.
Bookmarks