Hi Guys
I just installed Fedora alongside Windows on my new desktop computer. Everything worked fine and Fedora is great so far!
But since I wanted to keep the ability to use Windows, I want to use dualboot.
I’ve got the following setup:
1 TB SSD with the following partitions:
/dev/nvme0n1p1 2048 534527 532480 260M EFI-System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserviert
/dev/nvme0n1p3 567296 360959999 360392704 171.9G Microsoft Basisdaten
/dev/nvme0n1p4 1999360000 2000396287 1036288 506M Windows-Wiederherstellung
/dev/nvme0n1p5 360960000 402903039 41943040 20G Linux-Filesystem
/dev/nvme0n1p6 402903040 1975767039 1572864000 750G Linux-Filesystem
/dev/nvme0n1p7 1975767040 1999359999 23592960 11.3G Linux Swap
The idea would be to have the choice which system to boot on every start in the GRUB Menu. Since the GRUB-Menu is hidden in Fedora by default, I tried to activate it as described in other posts.
My /etc/default/grub
looks like this:
GRUB_TIMEOUT=25
GRUB_TIMEOUT_STYLE=menu
GRUB_DISTRIBUTOR=“$(sed ‘s, release .*$,g’ /etc/system-release)”
GRUB_DEFAULT=saved
#GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT=“console”
GRUB_CMDLINE_LINUX=“resume=UUID=40cb92bc-b4f8-[REDACTED] rd.luks.uuid=luks-28b8e50c-6e04-4644-[REDACTED] rhgb quiet”
GRUB_DISABLE_RECOVERY=“true”
GRUB_ENABLE_BLSCFG=false
I made the changes permanent by using sudo grub2-mkconfig -o /etc/grub2.cfg
. However if I start the system up, I never see the GRUB-Menu and can only access the LUKS password field (and further only Fedora). Pressing esc or shift during boot does not help either.
Where is my mistake?