You'd need to remove the kernel boot parameters quiet and splash from the linux line in GRUB:
Start your system and wait for the GRUB menu to show (if you don't see a GRUB menu, press and hold the left Shift key right after starting the system).
Now highlight the kernel you want to use, and press the e key. You should be able to see and edit the commands associated with the highlighted kernel.
Go down to the line starting with linux and remove the parameters quiet and splash.
Now press Ctrl + x to boot.
To make this change permanent:
From a terminal (or after pressing Alt + F2) run:
gksudo gedit /etc/default/grub
and enter your password.
Find the line starting with GRUB_CMDLINE_LINUX_DEFAULT and remove the parameters quiet and splash.
Edit you bootloader kernel command-line and remove quiet argument. You may also want to remove splash argument to disable graphical animation during boot to be able to see the console with messages.
In more recent releases, including 12.04 and 12.10 it is also necessary to either delete, or change the GFXMODE line to text, as well as removing quiet and splash. (See the other answers.)
When making the changes permanent find the commented line:
#GRUB_GFXMODE=640x480
and remove the beginning #, so it is no longer a comment, and also set its value to text.
With the latter change the menu will be white on black in a larger text font, and therefore hold fewer entries, but the messages should be visible once an item is selected for booting.
You'd need to remove the kernel boot parameters quiet and splash from the linux line in GRUB:
linux
and remove the parametersquiet
andsplash
.To make this change permanent:
From a terminal (or after pressing Alt + F2) run:
and enter your password.
Find the line starting with
GRUB_CMDLINE_LINUX_DEFAULT
and remove the parametersquiet
andsplash
.Save the file and close the editor.
Finally, start a terminal and run:
to update GRUB's configuration file.
Edit you bootloader kernel command-line and remove
quiet
argument. You may also want to removesplash
argument to disable graphical animation during boot to be able to see the console with messages.In more recent releases, including 12.04 and 12.10 it is also necessary to either delete, or change the
GFXMODE
line totext
, as well as removingquiet
andsplash
. (See the other answers.)When making the changes permanent find the commented line:
and remove the beginning
#
, so it is no longer a comment, and also set its value totext
.With the latter change the menu will be white on black in a larger text font, and therefore hold fewer entries, but the messages should be visible once an item is selected for booting.
Remove these 3 words/variable from linux command line:
End add the argument to force verbosing:
My linux line looks like this:
Press Esc during the initial stage of booting.