0

My goal: try to install Ubuntu on a separate partition of my laptop's HDD which would only be bootable with an inserted USB drive. This drive would contain GRUB and additional ext4 storage, without it the laptop will boot into w8.1 regularly.

My problem: constant installation failure. I've maxed the available space to 20gb on HDD, 16gb on USB. I reckon it could be that my HDD is bitlocker encrypted but I have yet to decrypt it and try again. I am booting with UEFI hybrid with CSM.

I'd like to know whether there's a problem with my concept or if there are some crucial technical details I'm missing.

1 Answers1

0

In linux and open source world, almost everything is possible

bitlocker is supposed to encrypt a partition, not the whole HDD; so this should not be a problem.

So, assuming you are booting using UEFI (please specify that in your question by editing it), you can create an ESP on your USB drive alongside the ext4 partition. This means you need to reformat it using a GPT header, not MBR.

Just use gparted from the Live USB to format your USB drive:

  • Choose to create a new partition table with GPT
  • Create a vfat partition and add the boot flag and esp on it (this turn it into an ESP)
  • Create the ext4 partition

Then, during the installation, you point GRuB to be instaled on your USB ESP. I have not tested this.

When you boot your laptop, choose to boot from the USB, and this should boot straight away into ubuntu.

solsTiCe
  • 9,515