henry Asked: 2014-06-07 11:55:49 +0800 CST2014-06-07 11:55:49 +0800 CST 2014-06-07 11:55:49 +0800 CST How can I permanently remove the boot option "quiet splash"? 772 When booting, I'd like to see the kernel output without having to edit the GRUB line on each boot. How can I do that? boot 3 Answers Voted Best Answer Duncubuntu 2014-06-07T12:01:49+08:002014-06-07T12:01:49+08:00 Open a terminal and type the following: sudo gedit /etc/default/grub Then look for a line like this in the opened file: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" It may have other options there as well, but just remove quiet splash and: sudo update-grub NickTux 2014-06-07T11:59:56+08:002014-06-07T11:59:56+08:00 Open a terminal (Ctrl+Alt+T) and issue the following command pkexec gedit /etc/default/grub or sudo -H gedit /etc/default/grub I assume here that gedit is installed on your system, if you prefer another editor use the appropriate name (e.g. leafpad, kate...etc). Search, find and edit the line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to GRUB_CMDLINE_LINUX_DEFAULT="" proofread, save the document and then run in terminal sudo update-grub MrVaykadji 2014-06-07T11:59:38+08:002014-06-07T11:59:38+08:00 It's in /etc/default/grub. Make your changes there and update grub with sudo update-grub
Open a terminal and type the following:
Then look for a line like this in the opened file:
It may have other options there as well, but just remove quiet splash and:
Open a terminal (Ctrl+Alt+T) and issue the following command
or
I assume here that gedit is installed on your system, if you prefer another editor use the appropriate name (e.g. leafpad, kate...etc).
Search, find and edit the line
to
proofread, save the document and then run in terminal
It's in
/etc/default/grub
. Make your changes there and update grub withsudo update-grub