I understand this question is extremely similar to this, however the solutions in that question do not apply to current methods of controlling Grub when booting a USB. My initial grub screen is controlled by grub.cfg
, not syslinux.txt
or isolinux.txt
.
To start off with, I have successfully created a persistent USB. I can use ctrl-alt-f3
to drop into shell and do what I need to do (which is compile and run a program). However I am unable to edit grub.cfg
in such a way that I can either boot straight into terminal, or bypass the Install screen entirely. Having to drop into the shell display is annoying and not the way I want this to work.
The following default menuentry in my grub.cfg is the issue. I need this to be persistent, and text based. When I add both text
and persistent
flags, nothing changes; I still get thrown into the Ubuntu Server install screen.
menuentry "Install Ubuntu Server" {
set gfxpayload=keep
linux /casper/vmlinuz quiet ---
initrd /casper/initrd
}
What do I need to change to make this go straight into a terminal?
This question also gets close, but unfortunately doesn't help me either.
This question doesn't help me either as I am using the stated version of mkusb-plug which apparently removed Try/Install. Doesn't stop it booting into Ubuntu Server's setup screen!