JackoBongo
JackoBongo
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Here is a little guide based on @Linus Xu and @phsxes 1. Identify the ESP - Open the ESP (using EasyUEFI or by mounting it) - Check the hash of the bootx64.efi file
certutil -Hashfile E:\EFI\Boot\bootx64.efi
certutil -Hashfile E:\EFI\Boot\bootx64.efi
It should be 49dda68626b94ea6185ddd8498b4a14892cbbfc8 2. Copy grub2 on ESP - Download the 2 packages https://kojipkgs.fedoraproject.org//packages/grub2/2.12/15.fc41/x86_64/grub2-efi-x64-2.12-15.fc41.x86_64.rpm https://kojipkgs.fedoraproject.org//packages/shim/15.8/3/x86_64/shim-x64-15.8-3.x86_64.rpm - Extract RPM packages and then the CPIO file. - Copy the archives content of boot/efi/EFI/Fedora on the ESP EFI/fedora 3. Start Bazzite - Boot on Fedora, you should reach grub2 prompt - Find the EXT* partition with ls command, result should look like
(memdisk) (proc) (hd0) (hd0,gpt7) (hd0,gpt6) (hd0,gpt5) (hd0,gpt4) (hd0,gpt3) (hd0,gpt2) (hd0,gpt1)
(memdisk) (proc) (hd0) (hd0,gpt7) (hd0,gpt6) (hd0,gpt5) (hd0,gpt4) (hd0,gpt3) (hd0,gpt2) (hd0,gpt1)
- Type ls (hd0,gpt7) for each partition to identify the correct one. - Find the grub2 directory on the correct partition using ls (hd0,gpt7)/, where you replace (hd0,gpt7) by the partition you previously identified - Type the following command
set root=(hd0, gpt7)
set prefix=(hd0, gpt7)/grub2
insmod normal
normal
set root=(hd0, gpt7)
set prefix=(hd0, gpt7)/grub2
insmod normal
normal
(also replace (hd0,gpt7) here ) - Bazzite should boots up 4. Fix Bazzite boot - Go in desktop and open a terminal Identify the mount (line having /boot, NOT boot/efi)
mount | grep /boot
mount | grep /boot
- Get the mount UUID
sudo blkid /dev/nvme0n1p6
sudo blkid /dev/nvme0n1p6
where you replace /dev/nvme0n1p6 by the mount previously identified - Create grub.cfg
sudo nano /boot/efi/EFI/fedora/grub.cfg
sudo nano /boot/efi/EFI/fedora/grub.cfg
- Put the following
search --no-floppy --fs-uuid --set=dev <UUID>
set prefix=($dev)/grub2

export $prefix
configfile $prefix/grub.cfg
search --no-floppy --fs-uuid --set=dev <UUID>
set prefix=($dev)/grub2

export $prefix
configfile $prefix/grub.cfg
Where <UUID> is the value you got from the previous step. This should be it. You can reboot to test it.
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Ok, thanks to you, the other method is working.
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
No description
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Alright, let's put this file and boot again
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
After renaming these files (5 as BOOTX64.CSV , 6 as BOOTIA32.CSV and 7 as grub.cfg ) I've moved them in /EFI/FEDORA of the second ESP. I've booted on this partition and got an error
Malformed binary after Attribute Certificate Table
Malformed binary after Attribute Certificate Table
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
7 contains a shell script begining with
if [ -e (md/md-boot) ]; then
# The search command might pick a RAID component rather than the RAID,
# since the /boot RAID currently uses superblock 1.0. See the comment in
# the main grub.cfg.
set prefix=md/md-boot
else
if [ -f ${config_directory}/bootuuid.cfg ]; then
source ${config_directory}/bootuuid.cfg
fi
if [ -e (md/md-boot) ]; then
# The search command might pick a RAID component rather than the RAID,
# since the /boot RAID currently uses superblock 1.0. See the comment in
# the main grub.cfg.
set prefix=md/md-boot
else
if [ -f ${config_directory}/bootuuid.cfg ]; then
source ${config_directory}/bootuuid.cfg
fi
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
6
shimia32.efi,Fedora,,This is the boot entry for Fedora
shimia32.efi,Fedora,,This is the boot entry for Fedora
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
file 5 contains
shimx64.efi,Fedora,,This is the boot entry for Fedora
shimx64.efi,Fedora,,This is the boot entry for Fedora
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
fyi, content of FILE0008.CHK is
set BOOT_UUID="20979cf6-c965-44de-8f07-222b0dfba383"
set BOOT_UUID="20979cf6-c965-44de-8f07-222b0dfba383"
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
ah right, on the /EFI/Fedora directory of the ESP partition.
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
BTw thanks for the support @Kasher_CS !
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
And all these renamed files should be moved to the boot/efi/EFI/Fedora/ directory of the secondary ESP?
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
No description
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Ok, so basically, I just fix the second ESP using these steps then selecting it should no longer bring me into a bootloop, right?
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Alright, is the boot entry creation covered by the summary written by @phsxes ?
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
(Excuse my ignorance, although I'm fluent in Linux, I'm clearly not a power-user)
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Is it safe to carry on the creation of the boot/efi/EFI/Fedora folder on the first ESP using the RPM files linked by @Linus Xu ?
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
Ah, the hash on this one is indeed 49dda68626b94ea6185ddd8498b4a14892cbbfc8
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
No description
462 replies
UBUniversal Blue
Created by Trajan Beil on 12/11/2024 in #🛟bazzite-help
Bazzite No Longer a Boot Option (for Dual Boot Windows/Bazzite on ROG Ally X)
I've tried to boot on the second EFI partition but it kept boot-lopping on a blue screen.
462 replies