How can I create a simple menu entry in GRUB to start the GRUB console?
menuentry "GRUB CLI" {
#command
}
I have already tried the following options, but they do not work at all or only through complicated workarounds.
menuentry "GRUB CLI" {
terminal_input console
terminal_output console
}
menuentry "GRUB" {
}
menuentry "GRUB" {
insmod normal
normal
}
menuentry "GRUB Terminal" {
cli
}
menuentry "GRUB Terminal" {
configfile
}
menuentry "GRUB Kommandozeile" {
exit
}
menuentry "GRUB" {
commandline
}
menuentry "GRUB" {
console
}
I know that I can open it by pressing the c key, but I would like to create an additional menu entry.
Is there a direct command for this in a menuentry?
can't find command 'xxx''and then it jumps back to the entry if i try withe.cliis actually an invalid command.