Fedora 40 boot to terminal?

Ok, any idea how i can boot to terminal from the grub boot menu? Thanks

I hope this helps:

I don’t want to set it as default though, just when i need to boot to terminal.

Press e in the grub menu to edit the kernel command line, then addsystemd.unit=multi-user.target and press CTRL+X to boot. (You may or may not want to remove quiet, rhgb or such.)

1 Like

Is that the line that starts with linux?

1 Like

You could duplicate a grub entry and then change the entry while adding different arguments.
https://computingforgeeks.com/modify-grub-cfg-configurations-on-linux-using-grubby/

  • Add a new kernel entry:
sudo grubby --grub2 \
  --add-kernel=/boot/vmlinuz-6.12.6-200.fc41.x86_64 \
  --title="Boot_without_GUI" \
  --initrd=/boot/initramfs-6.12.6-200.fc41.x86_64.img \
  --args=systemd.unit=multi-user.target, quiet

1 Like