GNU GRUB: Difference between revisions

imported>Samueldr
m Samueldr moved page GRUB to GNU GRUB: GNU GRUB is the full name of the project.
imported>Fadenb
Adds: How do I use GRUB in text mode?
Line 12: Line 12:
  $ sudo nix-collect-garbage --delete-older-than 14d  
  $ sudo nix-collect-garbage --delete-older-than 14d  
  $ sudo nixos-rebuild boot
  $ sudo nixos-rebuild boot
</syntaxhighlight>
=== How do I use GRUB in text mode? ===
Sometimes you need to access GRUB in text mode (e.g. when using out of band management systems like HP ILO in "textcons" mode). To enable text mode you have to disable the GRUB splash screen:
<syntaxhighlight lang="nix">
boot.loader.grub.splashImage = null;
</syntaxhighlight>
</syntaxhighlight>