2

So, I'm fairly new to Ubuntu. My current set-up is dual booting Windows 10 and Ubuntu, what I want to do is move the GRUB from the MBR to another partition so I can encrypt the Windows 10 partition with VeraCrypt. In order to do that the MBR must empty so VeraCrypt can install its own boot loader, and this way I'll be able to use GRUB as a second boot loader to boot to Ubuntu.

I tried moving the GRUB to my Ubuntu partition with no much luck as some pretty nasty errors:


Error while installing the bootloader

Installing for i386-pc platform.
grub-install: warning: File system `ext2' doesn't support embedding.

grub-install: warning: Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged..

grub-install: error: will not proceed with blocklists.

The above error showed up after using Grub Customizer, but using the terminal gave the same result as well.

Any help to solve my problem would be greatly appreciated!

P.S.: I'm not very experienced with the terminal so it would be very helpful if you could provide the commands I would need to use!

Thank you!

karel
  • 122,292
  • 133
  • 301
  • 332
Mark
  • 21

1 Answers1

1

MBR=Master Boot Record. It is the keeper of the partition table data and it is always located on the first partition of (the first) disk. I guess you meant moving GRUB to another partition (possibly the Ubuntu partition). Here is how: how to move grub boot from one partition to another in linux.

Ext2 is an old partition standard. Maybe you should move to ext3 or even ext4.

Encrypting the entire Win10 partition might get Win to run very slow. Encrypting just your personal stuff (on a separate partition maybe) might be more easy.

ipse lute
  • 2,614