LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 11-05-2022, 03:31 PM   #1
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382
Blog Entries: 1

Rep: Reputation: 71
Purge and reinstall grub


Hello to the forums,
I want to completely purge and reinstall grub and I want to know the correct procedure.

The system is giving me a problem; it does not let me boot from USB anymore. Too many entries (more than 100) of the Debian system. Deleting the entries with efibootmgr does not correct this as the entries keep coming back.

You may see this thread as a continuation of this thread and the system is descibed well there: https://www.linuxquestions.org/quest...ns-4175713577/

/dev/sda1 is /boot/efi
Code:
aris@hp2Debian:~$ sudo ls -hl /boot/
drwx------ 3 root root 4.0K Jan  1  1970 efi
drwxr-xr-x 5 root root 4.0K Nov  2 18:11 grub
My questions
Should I delete these two directories (/boot/efi, /boot/grub)? Are they going to be recreated?
Do I need to delete the directory /etc/grub.d or any directories or files in there? Are they going to be recreated?
Do I need to delete anything else?
And I need an explanation on grub-install. Is there any case that you install grub on dev/sda1? Or you always install grub on /dev/sda?

And finally, is this the correct procedure?
Code:
sudo apt purge grub-common
sudo apt install grub-common
sudo grub-install -v /dev/sda
sudo update-grub
 
Old 11-06-2022, 01:34 AM   #2
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
Quote:
Originally Posted by Debian6to11 View Post
I want to completely purge and reinstall grub and I want to know the correct procedure.
And you know this is something that anyone would be in the habit of doing, and so know "the correct procedure"? I'm guessing few, if any know "the" correct procedure. Most likely complete includes:
  • remove the Grub-related packages that installation includes:
    Code:
    # Dq grub
    dpkg-query -l
    rc  grub-common    2.02+dfsg1-4 amd64 GRand Unified Bootloader (common files)
    rc  grub-efi-amd64 2.02+dfsg1-4 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version)
    # apt install grub-efi-amd64
    Reading package lists
    ....
    The following additional packages will be installed:
      grub-common grub-efi-amd64-bin grub2-common
    Suggested packages:
      multiboot-doc grub-emu mtools xorriso desktop-base
    Recommended packages:
      os-prober grub-efi-amd64-signed
    The following NEW packages will be installed:
      grub-common grub-efi-amd64 grub-efi-amd64-bin grub2-common
    0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
    Need to get 4,124 kB of archives.
    After this operation, 28.8 MB of additional disk space will be used.
    Do you want to continue? [Y/n] n
    You may or may not want os-prober, depending on whether this is to be a primary Grub intended to automatically include installations other than Bookworm (I shouldn't have needed to dig through your prior thread to discover this is your current Debian version), or have them included via custom.cfg, or customization in /etc/grub.d/.
  • Remove all disks that have Grub installed anywhere on them
  • Clear BIOS, so that all UEFI boot entries are removed from NVRAM
  • Boot with no bootable media attached, to ensure NVRAM is clear of obsolete entries
At this point, for some definition of "completely purge", the completed activity might constitute success.

Quote:
My questions
Should I delete these two directories (/boot/efi, /boot/grub)?
What's in yours?:
Code:
# ls /boot/efi /boot/grub
/boot/efi:
EFI  grub2  MemTest86.log  mt74x64.efi  mt83x64.efi

/boot/grub:
custom.cfg  fonts  grub.cfg  grubenv  locale  unicode.pf2  x86_64-efi
Quote:
And finally, is this the correct procedure?
Code:
sudo apt purge grub-common
sudo apt install grub-common
sudo grub-install -v /dev/sda
sudo update-grub
On UEFI systems, grub-install -v /dev/sda is definitely not appropriate. Grub works differently prior to actually presenting a boot menu on UEFI. It's ESP-based, nothing to do directly with any MBR or boot track.
 
Old 11-06-2022, 02:04 AM   #3
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,978

Rep: Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337
if you have too many entries you need to clean up the config file, do not need to reinstall it.
From the other hand if grub created that huge config file it will do next time again, because it automatically detects things. Most probably you need to solve the real issue, why do you have more than 100 entries?

Oh yes, probably you know that, without grub you will not able to boot your system at all, so removing grub may cause additional troubles too.

Last edited by pan64; 11-06-2022 at 02:06 AM.
 
Old 11-06-2022, 05:15 AM   #4
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,547

Rep: Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498Reputation: 2498
Your other thread you linked to in your first post indicates that you use Debian and the other installs are simply for testing, it would seem far simpler to install Grub to a USB drive and copy the various iso files to the USB drive and manually create entries in the grub.cfg file. This would eliminate the extraordinary number of boot entries you currently have. If you are not familiar with Grub and manually creating entries this won't help but it isn't really that difficult. Lots of links explaining how to do it. I do this to test and have 25 Linux iso files which boot Legacy and EFI on a 64GB flash drive.
 
Old 11-06-2022, 07:44 AM   #5
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,371

Rep: Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593
Purging the grub package will not fix the problem. Is there more than one drive on the system with an efi partition? With the usb not plugged in at boot-up do the mutiple boot entries go away when f9 is pressed?

On a side-note when a system is booted in uefi mode it is just "grub-install" , sda or sda1 is not needed and will be ignored by grub-install. The grub boot loader code will be intalled to the efi partition that is mounted to /boot/efi.

Last edited by colorpurple21859; 11-06-2022 at 08:05 AM.
 
Old 11-06-2022, 01:15 PM   #6
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
@ mrmazda

According to this command I think that most grub related packages will be removed. And of course I do not know what all these packages are but they should be all grub related.
Code:
aptitude purge -s grub-common
The following 15 packages will be REMOVED:
efibootmgr{u} grub-common{p} grub-efi-amd64{a} grub-efi-amd64-bin{a} grub-efi-amd64-signed{a} grub2-common{a} libefiboot1{u} libefivar1{u} libfuse2{u} mokutil{u} os-prober{u} 
shim-helpers-amd64-signed{u} shim-signed{a} shim-signed-common{u} shim-unsigned{u}
I do not know the files of /etc/grub.d and I do not configure anything there. I just let update-grub do it's own thing.

I should have mentioned that I had purged grub from six of the eight distros, I just left grub on the Debian and MX distros. I did delete the MX directory and all other distros apart from Debian from /boot/efi/EFI (I think they were there). The command used to purge grub was "apt purge grub-common" in the other six distros.

I have two disks in the laptop. The main disk which has grub and the distributions, and the second disk which is just used for backups. Shoud I remove the main disk? And is that for clearing the BIOS?
Is this a neccessary step (both removing the main disk and clearing BIOS)? Removing the disk and clearing the BIOS will involve removing the bottom panel which is a painful process.

Code:
aris@hp2Debian:~$ sudo ls /boot/efi /boot/efi/EFI /boot/grub
/boot/efi:
EFI  startup.nsh

/boot/efi/EFI:
BOOT  debian

/boot/grub:
fonts  grub.cfg  grubenv  locale  unicode.pf2  x86_64-efi
In /boot/efi/EFI/debian there is a file "shimx64.efi" (I think) which from what I have read in a Debian's users forum thread, is responsible for the many entries. According to that thread you can delete it but the entries will most likely come back.

(I did quite some searching before posting this, as I usually do. When I come to a dead end I just post a question.)
 
Old 11-06-2022, 01:16 PM   #7
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
@ pan64

Are you talking about the file I mentioned in the paragraph above (last paragraph of mrmazda)?
I did remove some entries with efibootmgr but they do come back. As I read somewhere in my searches it could be a bug on multiboot systems.

Before I purge grub I will remove some entries until I see that I can boot my USB installation which can boot all eight distributions in the laptop. That is possible until grub is updated on the Debian system (by updates). After that it is blocked (edit: the USB entry; /edit) and it is not shown as a boot option in the laptop BIOS.

Last edited by Debian6to11; 11-06-2022 at 01:32 PM.
 
Old 11-06-2022, 01:18 PM   #8
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
@ yancek

I am not so familiar with grub. I did read about it (in grub's manual and LFS) and the manual entries look just very simple compared to the distributions grub. Maybe I will try it sometime?

Actually the whole laptop is used for testing/fun/learning but when I do something with it I mostly use the Debian distro. That laptop has a twin in which I will put another eight distros most likely, when I have time to spare. I will only install grub in one distro though when I do that.
 
Old 11-06-2022, 01:19 PM   #9
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
@ colorpurple21859

That is the reason why I asked about deleting those directories.

There is only one real disk and the second disk is only used for backups.

On the laptops boot menu I have about a dozen debian entries and a couple of network entries. When I remove some entries with efibootmgr, the USB entry comes back (for a while). Read what I wrote for pan64.

And thanks for the last tip.
 
Old 11-06-2022, 01:27 PM   #10
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
Also I have removed some lines because the post was too long for the forums.
And I do not know from where "Boot0010* Ubuntu" entry comes from as I do not have such a directory in /boot/efi/EFI. I believe that is the Bodhi distro.
Code:
aris@hp2Debian:~$ efibootmgr -v
BootCurrent: 0000
Timeout: 0 seconds
BootOrder: 3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,300A,300B,300C,300D,000E,000F,2001,2002,2003
Boot0000* EFI HDD Device (Crucial_CT240M500SSD1)        PciRoot(0x0)/Pci(0x1f,0x2)/Sata(0,0,0)/HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)RC
Boot0001* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0002* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0003* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0004* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0005* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0006* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0007* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0008* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0009* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot000A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot000B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot000C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot000D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot000E* Network Adapter (IPv6 UEFI)   PciRoot(0x0)/Pci(0x1c,0x0)/Pci(0x0,0x0)/MAC(28924a28302c,0)/IPv6([::]:<->[::]:,0,0)RC
Boot000F* Network Adapter (IPv4 UEFI)   PciRoot(0x0)/Pci(0x1c,0x0)/Pci(0x0,0x0)/MAC(28924a28302c,0)/IPv4(0.0.0.00.0.0.0,0,0)RC
Boot0010* Ubuntu        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\ubuntu\grubx64.efi)RC
Boot0011* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0012* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0013* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0014* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0015* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0016* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0017* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0018* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0019* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot001A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot001B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot001C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot001D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot001E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot001F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0020* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0021* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0022* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0023* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0024* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0025* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0026* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0027* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0028* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0029* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot002A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot002B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot002C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot002D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot002E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot002F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0030* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0031* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0032* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0033* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0034* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0035* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0036* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0037* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0038* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0039* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot003A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot003B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot003C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot003D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot003E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot003F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0040* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0041* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0042* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0043* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0044* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0045* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0046* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0047* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0048* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0049* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot004A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot004B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot004C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot004D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot004E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot004F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0050* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0051* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0052* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0053* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0054* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0055* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0056* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0057* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0058* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0059* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot005A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot005B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot005C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot005D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot005E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot005F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0060* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0061* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0062* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0063* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0064* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0065* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0066* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0067* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0068* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0069* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot006A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot006B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot006C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot006D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot006E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot006F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0070* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0071* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0072* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0073* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0074* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0075* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0076* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0077* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0078* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0079* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot007A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot007B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot007C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot007D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot007E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot007F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0080* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0081* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0082* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0083* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0084* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0085* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0086* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0087* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0088* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0089* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot008A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot008B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot008C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot008D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot008E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot008F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0090* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0091* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0092* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0093* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0094* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0095* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0096* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0097* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0098* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot0099* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot009A* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot009B* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot009C* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot009D* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot009E* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot009F* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A0* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A1* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A2* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A3* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A4* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A5* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A6* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A7* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A8* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00A9* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00AA* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00AB* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00AC* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00AD* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00AE* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00AF* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B0* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B1* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B2* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B3* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B4* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B5* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B6* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B7* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B8* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00B9* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00BA* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00BB* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00BC* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00BD* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00BE* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00BF* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00C0* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00C1* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00C2* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00CD* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00CE* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00CF* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D0* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D1* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D2* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D3* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D4* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D5* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D6* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D7* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D8* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00D9* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00DA* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00DB* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00DC* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00DD* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00DE* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00DF* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E0* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E1* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E2* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E3* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E4* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E5* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E6* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E7* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E8* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00E9* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00EA* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00EB* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00EC* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00ED* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00EE* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00EF* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F0* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F1* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F2* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F3* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F4* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F5* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F6* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F7* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F8* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot00F9* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot2001* USB Drive (UEFI)      RC
Boot2002* Internal CD/DVD ROM Drive (UEFI)      RC
Boot3000* Internal Hard Disk or Solid State Disk        RC
Boot3001* Internal Hard Disk or Solid State Disk        RC
Boot3002* Internal Hard Disk or Solid State Disk        RC
Boot3003* Internal Hard Disk or Solid State Disk        RC
Boot3004* Internal Hard Disk or Solid State Disk        RC
Boot3005* Internal Hard Disk or Solid State Disk        RC
Boot3006* Internal Hard Disk or Solid State Disk        RC
Boot3007* Internal Hard Disk or Solid State Disk        RC
Boot3008* Internal Hard Disk or Solid State Disk        RC
Boot3009* Internal Hard Disk or Solid State Disk        RC
Boot300A* Internal Hard Disk or Solid State Disk        RC
Boot300B* Internal Hard Disk or Solid State Disk        RC
Boot300C* Internal Hard Disk or Solid State Disk        RC
Boot300D* Internal Hard Disk or Solid State Disk        RC
 
Old 11-06-2022, 01:28 PM   #11
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,371

Rep: Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593
Is there a fat32 partition on the backup drive with an EFI directory?
 
Old 11-06-2022, 06:07 PM   #12
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
Quote:
Originally Posted by Debian6to11 View Post
I have two disks in the laptop. The main disk which has grub and the distributions, and the second disk which is just used for backups. Shoud I remove the main disk? And is that for clearing the BIOS?
Is this a neccessary step (both removing the main disk and clearing BIOS)? Removing the disk and clearing the BIOS will involve removing the bottom panel which is a painful process.
You may be able to accomplish NVRAM cleanup doing less. Some BIOS just don't manage housekeeping very well, if at all. The proof is in your post #10.
 
Old 11-07-2022, 12:40 AM   #13
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
I have a Clonezilla image of the EFI partition on the second disk. It was done when I finished installing the eight distributions. It will include all distributions grub inside though. Since then I also switched (actually reinstalled) partitions 5 and 9, Freespire with Kali, because Kali is using a bit of space. Gained 4GB for Kali. I will Clonezilla the first disk again if all goes well.
Code:
aris@hp2Debian:~$ ls /media/aris/Disk2/
aris  Clonezilla  lost+found  test-10GB-video  timeshift
aris@hp2Debian:~$ ls /media/aris/Disk2/Clonezilla/
hp2.4-8OS.clonezilla-20220426.img  hp2.7OS.clonezilla-20220421.img  hp2.8OS.clonezilla-20220427.img
aris@hp2Debian:~$ ls /media/aris/Disk2/Clonezilla/hp2.8OS.clonezilla-20220427.img/
blkdev.list     Info-img-id.txt        parts                   sda6.ext4-ptcl-img.gz  sda-gpt.gdisk
blkid.list      Info-lshw.txt          sda10.ext4-ptcl-img.gz  sda7.ext4-ptcl-img.gz  sda-gpt.sgdisk
clonezilla-img  Info-lspci.txt         sda1.vfat-ptcl-img.gz   sda8.ext4-ptcl-img.gz  sda-mbr
dev-fs.list     Info-OS-prober.txt     sda2.ext4-ptcl-img.gz   sda9.ext4-ptcl-img.gz  sda-pt.parted
disk            Info-packages.txt      sda3.ext4-ptcl-img.gz   sda-chs.sf             sda-pt.parted.compact
efi-nvram.dat   Info-saved-by-cmd.txt  sda4.ext4-ptcl-img.gz   sda-gpt-1st            sda-pt.sf
Info-dmi.txt    Info-smart.txt         sda5.ext4-ptcl-img.gz   sda-gpt-2nd            swappt-sda11.info
I will try deleting (/boot/efi, /boot/grub) these directories, after making a backup, and purging and reinstalling grub-common later on (probably today). I will be posting back how it went.
 
Old 11-07-2022, 12:51 AM   #14
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,978

Rep: Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337Reputation: 7337
first I would try update_grub instead of full purge and reinstall. Probably (when /boot/efi is cleaned up) it will work.
 
Old 11-08-2022, 03:20 AM   #15
Debian6to11
Member
 
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382

Original Poster
Blog Entries: 1

Rep: Reputation: 71
It was not difficult and everything is looking good.

First I manually deleted the 100 plus entries from /sys/firmware/efi/efivars so I could boot from a USB in case of problems. This is way faster than using efibootmgr (thanks to a post from arch bbs).

Then I deleted /boot/efi/EFI and /boot/grub, and purged grub-common (15 packages). I had to install two packages (grub-common and grub-efi-amd64) to pull those 15 packages back.

After a simple grub-install (thanks colorpurple21859), I had to uncomment a line in /etc/default/grub (GRUB_DISABLE_OS_PROBER=false) for os-prober to work with update-grub.

And a reboot showed that everything went fine. Also loaded two distros and is looking good.

The output of efibootmgr now is normal, let's hope it stays like that.
Code:
aris@hp2Debian:~$ efibootmgr -v
BootCurrent: 0001
Timeout: 0 seconds
BootOrder: 3001,000F,000E,2001,2002,2003
Boot0001* debian        HD(1,GPT,a13692c0-aa2c-4bec-8669-a98f290251d6,0x800,0x200000)/File(\EFI\debian\shimx64.efi)
Boot000E* Network Adapter (IPv6 UEFI)   PciRoot(0x0)/Pci(0x1c,0x0)/Pci(0x0,0x0)/MAC(28924a28302c,0)/IPv6([::]:<->[::]:,0,0)RC
Boot000F* Network Adapter (IPv4 UEFI)   PciRoot(0x0)/Pci(0x1c,0x0)/Pci(0x0,0x0)/MAC(28924a28302c,0)/IPv4(0.0.0.00.0.0.0,0,0)RC
Boot2001* USB Drive (UEFI)      RC
Boot2002* Internal CD/DVD ROM Drive (UEFI)      RC
Boot3001* Internal Hard Disk or Solid State Disk        RC
@ pan64
I saw your post but decided to go all the way.

Thanks to all that replied, you have been helpful.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] How do I purge (delete) my HP printer "driver" then reinstall Michael Piziak Linux - Newbie 3 02-08-2020 12:15 PM
apt-get purge or --purge is false advertising... jmgibson1981 Linux - Newbie 12 07-01-2015 08:04 AM
Infinite Grub Loop: GRUB GRUB GRUB GRUB GRUB GRUB GRUB GRUB GRUB GRUB... beeblequix MEPIS 2 11-02-2013 10:56 PM
[SOLVED] Purge and reinstall of Fail2Ban on Ubuntu 10.04 is failing thinktink Linux - General 3 10-18-2010 02:18 AM
reinstall windows, reinstall GRUB too? leupi Linux - Software 1 05-07-2005 10:50 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 04:07 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration