|
SelectSwapPartition=$"Select a swap partition to use.\nIf the only option you see is \"$ExitInstaller\" then no swap partition was found." |
When doing an iso restore, I noticed that it was not booting correctly through UEFI (including when I actually tested it), but I solved the problem manually, which may help you a bit
- Create UFI partition :
fdisk /dev/sdb (n 1 enter +512M t [EFI System] w)
sudo apt-get install dosfstools
- format it:
sudo mkfs.fat -F32 /dev/sdb1
- mount:
sudo mount /dev/sdb1 /boot/efi
sudo grub-install /dev/sdb --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB
echo "/dev/sdb1 /boot/efi vfat defaults 0 1" | sudo tee -a /etc/fstab
PS: /dev/sdb is boot system disk
There may be times when this boot is not shown in the bios, you can try add the boot option
DELL BIOS Examples
remastersys/remastersys/usr/bin/remastersys-installer
Line 110 in 458fcbb
When doing an iso restore, I noticed that it was not booting correctly through UEFI (including when I actually tested it), but I solved the problem manually, which may help you a bit
fdisk /dev/sdb(n 1 enter +512M t [EFI System] w)sudo apt-get install dosfstoolssudo mkfs.fat -F32 /dev/sdb1sudo mount /dev/sdb1 /boot/efisudo grub-install /dev/sdb --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUBecho "/dev/sdb1 /boot/efi vfat defaults 0 1" | sudo tee -a /etc/fstabDELL BIOS Examples