OK, now I am stuck
I deleted all partitions from sdb (so this includes the old sdb linux boot and old sdb AL partitions)
Nuclear Option taken
Then I double-checked my fstab and there was a mistake in the UUID it couldnt start before (US keyboard is ‘/’ where ‘-’ is on PT keyboard and I didnt notice that one - I now use sudo setxkbmap pt
in live USB terminal 1st thing!)
My fstab has three entries:
- AL OS partition correct UUID, sda6, mounted at /, ext 4,
- Boot partition correct UUID, sda1, mounted at /boot, vfat
- Linux Swap partition correct UUID, sda5, no mount point, swap
EDIT: fstab below:
# /dev/sda6
UUID=e39d8e26-bfbc-4b98-82aa-b9f517273ad2 / ext4 rw,relatime 0 1
# /dev/sda1
UUID=5A5B-B396 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/sda5
UUID=d06f9174-8e6f-46d0-a610-295cc5bd817a none swap defaults 0 0
#LABEL=Documents /run/media/leigh/Documents ntfs3 nosuid,nodev,nofail,x-gvfs-show,uid=1000,gid=984 0 0
#LABEL=Work /run/media/leigh/Work ntfs3 nosuid,nodev,nofail,x-gvfs-show,uid=1000,gid=984 0 0
#LABEL=LaptopMusic /run/media/leigh/LaptopMusic ntfs3 nosuid,nodev,nofail,x-gvfs-show,uid=1000,gid=984 0 0
Then, using AL live USB:
I mounted the sda6 AL OS partition:
mount /dev/sda6 /mnt
I mounted the sda1 FAT32 boot partition at /boot (also has Win boot manager on it):
mount /dev/sda1 /mnt/boot
Chroot into AL OS partition:
arch-chroot /mnt
Reinstall GRUB:
pacman -S grub efibootmgr os-prober
They were all up to date but I reinstalled to be safe
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=grub
NB - /boot not /boot/efi
Installation Finished. No errors reported
grub-mkconfig -o /boot/grub/grub.cfg
Only adds boot menu entry for EUFI settings
cant find grub drive for sdc but that i because sdc is the USB live session
If I reboot, I get just grub with UEFI settings, so os-prober isnt finding neither my Win partition nor my AL OS partition
I checked in /etc/default/grub
and the line below is present and uncommented:
GRUB_DISABLE_OS_PROBER=false
Windows still boots if I put Windows boot manager 1st in the BIOS boot order
Any ideas?
Please!??