df -hsudo fdisk -llsblk flags:-f to get more verbose output-o to get specific output columns, use -h option to see list of column optionsblkidls -l /dev/disk/by-id, additional list options:ls -l /dev/disk/by-uuidsudo lshw -class diskfindmntThis is a command line utility that allows handling of the UEFI boot menu.
sudo apt install efibootmgrsudo pacman -S efibootmgr
Simply efibootmgr or sudo efibootmgr, use the -v flag for a more verbose output
Take the displayed BootOrder and and append and adjust to the following command to adjust: sudo efibootmgr -o
Current: BootOrder: 0003,000A,0002,000B,0001,0006,0007,0008,0009,0000
Adjusted: sudo efibootmgr -o 0002,000B,0003,000A,0001,0006,0007,0008,0009,0000
Install command grub-efi: sudo apt install grub-efi
Mount the the EFI System Partition: sudo mount /dev/sdd1 /boot/efi
Install Grub boot loader: sudo grub-install /dev/sdd –target=x86_64-efi –efi-directory=boot/efi/
sudo efibootmgr -t 10 to set boot selection time to 10 seconds
sudo efibootmgr --delete-bootnum --bootnum 0
What is ventoy
Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files.
This can be loaded on to a USB disk instead of a flash drive for a potential better overall experience.