How to make natty boot in verbose mode. Changing option GRUB_CMDLINE_LINUX_DEFAULT="splash quiet
to GRUB_CMDLINE_LINUX_DEFAULT=""
in /etc/default/grub
doesn't effect in natty.
Asked
Active
Viewed 1.4e+01k times
27
-
1I am not sure, but try it. On the grub options remove quiet. – karthick87 May 02 '11 at 02:20
-
2Did you run "sudo update-grub" after making changes to /etc/default/grub ? – karthick87 May 02 '11 at 02:31
-
@karthick87: Yes, I did it. – kholis May 02 '11 at 10:10
3 Answers
21
Try nosplash debug
. If you want output from upstart too, add --verbose

Jeremy Kerr
- 27,199
-
can you check to see if these options were passed to the running kernel?
cat /proc/cmdline
will show you what the kernel actually booted with. – Jeremy Kerr Aug 08 '11 at 05:30 -
I didn't understand where I can add
--verbose
, can you explain yourself better? – Mario Palumbo Mar 31 '22 at 10:56 -
1@MarioPalumbo this question is about changing the
GRUB_CMDLINE_LINUX_DEFAULT
variable in/etc/default/grub
, so that's the context of the answer. – Jeremy Kerr Apr 03 '22 at 07:37
13
Changing
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to
GRUB_CMDLINE_LINUX_DEFAULT=""
in /etc/default/grub
is correct, but you also need to run update-grub
for it to take effect.

Demis Palma ツ
- 741
- 8
- 12
3
Hit Esc any time to see the text.
For permanent changes, uninstall all plymouth themes, including text ones, and in /etc/grub/default
uncomment the line to enable console.

Barafu Albino
- 6,541
-
2Uncomment
GRUB_TERMINAL=console
in /etc/grub/default works in my laptop but grub resolution decreased to 800x600. – kholis May 04 '11 at 07:49 -
You can fix resolution right there. GRUB_GFXMODE=whatever. Note that you can use only modes which your graphic card supports via VBE. You can see them in GRUB console with the command `vbeinfo' – Barafu Albino May 04 '11 at 08:18
-
vbeinfo
is not found on my system [and apparently isn't in the repo], but this works:sudo hwinfo --framebuffer
– Matt Oct 11 '11 at 04:42 -
2vbeinfo is not part of linux: it is a command that you can run from grub screen – Jul 28 '12 at 06:54