Page 1 of 1

Disable Boot Splash (or lack thereof)

Posted: Mon Feb 20, 2012 11:32 pm
by A Future Pilot
I know that Linux Mint defaults to a black screen bootsplash, but some of us would really like to watch the messages scroll as the computer boots. Would it be possible in Mint 13 to have an option to easily re-enable the scrolling text?

(I personally want to figure out a way to have tux sitting on top of the scrolling text like some other distro's, but I'm not sure how to go about it :/ )

Re: Disable Boot Splash (or lack thereof)

Posted: Mon Feb 20, 2012 11:41 pm
by dagon
That would probably be a good idea. Without some kind of lifesign people tend to get confused.

Re: Disable Boot Splash (or lack thereof)

Posted: Tue Feb 21, 2012 11:51 pm
by Ikem
A Future Pilot wrote:I know that Linux Mint defaults to a black screen bootsplash,

but some of us would really like to watch the messages scroll as the computer boots.

Would it be possible in Mint 13 to have an option to easily re-enable the scrolling text?
You need to edit the kernel boot command line.

Open a terminal and type:

Code: Select all

sudo gedit "/etc/defaults/grub"
Change this line:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
To this line:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT=""
And safe the file.

Re: Disable Boot Splash (or lack thereof)

Posted: Mon Jan 21, 2013 9:09 pm
by lehrin
I'm only resurrecting this post because I just found it on Google, and I noticed a mistake and an omission, so I figured I would point them out for others who also find it:
Ikem wrote: You need to edit the kernel boot command line.

Open a terminal and type:

Code: Select all

sudo gedit "/etc/defaults/grub"
It's actually

Code: Select all

sudo gedit /etc/default/grub
Or, in the case of MATE,

Code: Select all

sudo pluma /etc/default/grub
The next part is right on:
Ikem wrote: Change this line:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
To this line:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT=""
And safe the file.
But you need to run the following afterwards:

Code: Select all

sudo update-grub

Re: Disable Boot Splash (or lack thereof)

Posted: Tue Jan 22, 2013 9:15 am
by Ikem
lehrin wrote:You need to run the following afterwards:

Code: Select all

sudo update-grub
You're right. Thanks for pointing that out. :)

Re: Disable Boot Splash (or lack thereof)

Posted: Tue Jan 22, 2013 9:18 am
by Zalbor
To be fair, it should be gksudo and not sudo, as gedit and pluma are graphical applications.