0

i was trying to fix a crash issue by adding a boot paramtr (How do I add a kernel boot parameter?) <- this and now am stuck in initramfs everytime i boot (i did the permenant boot paramtr).

please let me know if i can revert it somehow using initramfs.

1 Answers1

1

You can boot into recovery mode from the Grub menu and this will bypass the kernel arguments on GRUB_CMDLINE_LINUX_DEFAULT. From recovery mode, you will be able to edit your /etc/default/grub file to remove the arguments. Also, don't forget to run sudo update-grub to apply the changes after you are finished editing the file.

To explain: arguments listed after GRUB_CMDLINE_LINUX_DEFAULT are not passed on when using recovery mode. See here for more information.

mchid
  • 44,904
  • 8
  • 102
  • 162