How can I show or hide boot messages when Ubuntu starts?

Multi tool use
Is there a way to easily turn on/off showing the boot messages (loading the services) when Ubuntu starts? Is it something in Grub2?
I am running 10.04.
boot grub2
add a comment |
Is there a way to easily turn on/off showing the boot messages (loading the services) when Ubuntu starts? Is it something in Grub2?
I am running 10.04.
boot grub2
add a comment |
Is there a way to easily turn on/off showing the boot messages (loading the services) when Ubuntu starts? Is it something in Grub2?
I am running 10.04.
boot grub2
Is there a way to easily turn on/off showing the boot messages (loading the services) when Ubuntu starts? Is it something in Grub2?
I am running 10.04.
boot grub2
boot grub2
edited Oct 6 '17 at 18:24


Zanna
50k13131238
50k13131238
asked Jul 29 '10 at 2:03
Weboide
6,46192837
6,46192837
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
You would need to edit the file /etc/default/grub
. In this file you'll find an entry called GRUB_CMDLINE_LINUX_DEFAULT
. This entry must be edited to control the display of the splash screen.
The presence of the word splash
in this entry enables the splash screen, with condensed text output. Adding quiet
as well, results in just the splash screen; which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.
So, the default for the desktop, (i.e. splash screen only):
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #Hide text and show splash
For the traditional, text display:
GRUB_CMDLINE_LINUX_DEFAULT= #Show text but not the splash
For the splash, but the ability to show the boot messages by pressing Esc:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
Or, finally, for just a (usually) black screen, try:
GRUB_CMDLINE_LINUX_DEFAULT=quiet #Don't show Ubuntu bootup text
GRUB_CMDLINE_LINUX="console=tty12" #Don't show kernel text
After editing the file, you need to run update-grub
.
sudo update-grub
For more details, see this: https://help.ubuntu.com/community/Grub2
1
How can you read that messages that are shown after you removed thesplash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.
– rubo77
Mar 31 '14 at 12:00
GRUB_HIDDEN_TIMEOUT
andGRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the errorWarning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
1
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
add a comment |
I may be out of subject, but you can just press "escape" during boot, to show/hide the plymouth splash screen...
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
6
It works only if grub is not quiet, i.e.:GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
add a comment |
There's a simple way of hiding all boot messages. In /etc/default/grub
, adjust the following:
GRUB_TIMEOUT=0 # Do not show the GRUB menu at all
GRUB_CMDLINE_LINUX_DEFAULT=quiet
GRUB_CMDLINE_LINUX="console=tty12" # Redirect the kernel output to another tty
After that, just sudo update-grub
, and it should be done.
1
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286
– Sergiy Kolodyazhnyy
Oct 20 at 21:26
add a comment |
You didn't identify whether you are on a server system or desktop, so I'll address both.
If you add splash
to /etc/default/grub/
in GRUB_CMDLINE_LINUX_DEFAULT
, Ubuntu will present you with a splash screen, either a simple text based progress bar or graphically via plymouth
, which I describe below.
Using plymouth
, a graphical startup animator, you can provide a pretty bootscreen that is well suited to desktop machines. You might not want to do this on a server, but it's up to you.
sudo apt-get install plymouth-theme-ubuntu-logo
add a comment |
I use GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
to tell my laptop to not show me the startup picture but the boot messages … still works for 11.10
add a comment |
If you remove quiet
option from GRUB_CMDLINE_LINUX_DEFAULT
to show boot messages it's sometimes necessary to also set loglevel
option to higher value. Otherwise some drivers may flood your tty
with notice messages. I use this line to enable boot messages:
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=4"
This way only significant system messages will be printed to the console.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f248%2fhow-can-i-show-or-hide-boot-messages-when-ubuntu-starts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
You would need to edit the file /etc/default/grub
. In this file you'll find an entry called GRUB_CMDLINE_LINUX_DEFAULT
. This entry must be edited to control the display of the splash screen.
The presence of the word splash
in this entry enables the splash screen, with condensed text output. Adding quiet
as well, results in just the splash screen; which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.
So, the default for the desktop, (i.e. splash screen only):
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #Hide text and show splash
For the traditional, text display:
GRUB_CMDLINE_LINUX_DEFAULT= #Show text but not the splash
For the splash, but the ability to show the boot messages by pressing Esc:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
Or, finally, for just a (usually) black screen, try:
GRUB_CMDLINE_LINUX_DEFAULT=quiet #Don't show Ubuntu bootup text
GRUB_CMDLINE_LINUX="console=tty12" #Don't show kernel text
After editing the file, you need to run update-grub
.
sudo update-grub
For more details, see this: https://help.ubuntu.com/community/Grub2
1
How can you read that messages that are shown after you removed thesplash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.
– rubo77
Mar 31 '14 at 12:00
GRUB_HIDDEN_TIMEOUT
andGRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the errorWarning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
1
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
add a comment |
You would need to edit the file /etc/default/grub
. In this file you'll find an entry called GRUB_CMDLINE_LINUX_DEFAULT
. This entry must be edited to control the display of the splash screen.
The presence of the word splash
in this entry enables the splash screen, with condensed text output. Adding quiet
as well, results in just the splash screen; which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.
So, the default for the desktop, (i.e. splash screen only):
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #Hide text and show splash
For the traditional, text display:
GRUB_CMDLINE_LINUX_DEFAULT= #Show text but not the splash
For the splash, but the ability to show the boot messages by pressing Esc:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
Or, finally, for just a (usually) black screen, try:
GRUB_CMDLINE_LINUX_DEFAULT=quiet #Don't show Ubuntu bootup text
GRUB_CMDLINE_LINUX="console=tty12" #Don't show kernel text
After editing the file, you need to run update-grub
.
sudo update-grub
For more details, see this: https://help.ubuntu.com/community/Grub2
1
How can you read that messages that are shown after you removed thesplash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.
– rubo77
Mar 31 '14 at 12:00
GRUB_HIDDEN_TIMEOUT
andGRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the errorWarning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
1
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
add a comment |
You would need to edit the file /etc/default/grub
. In this file you'll find an entry called GRUB_CMDLINE_LINUX_DEFAULT
. This entry must be edited to control the display of the splash screen.
The presence of the word splash
in this entry enables the splash screen, with condensed text output. Adding quiet
as well, results in just the splash screen; which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.
So, the default for the desktop, (i.e. splash screen only):
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #Hide text and show splash
For the traditional, text display:
GRUB_CMDLINE_LINUX_DEFAULT= #Show text but not the splash
For the splash, but the ability to show the boot messages by pressing Esc:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
Or, finally, for just a (usually) black screen, try:
GRUB_CMDLINE_LINUX_DEFAULT=quiet #Don't show Ubuntu bootup text
GRUB_CMDLINE_LINUX="console=tty12" #Don't show kernel text
After editing the file, you need to run update-grub
.
sudo update-grub
For more details, see this: https://help.ubuntu.com/community/Grub2
You would need to edit the file /etc/default/grub
. In this file you'll find an entry called GRUB_CMDLINE_LINUX_DEFAULT
. This entry must be edited to control the display of the splash screen.
The presence of the word splash
in this entry enables the splash screen, with condensed text output. Adding quiet
as well, results in just the splash screen; which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.
So, the default for the desktop, (i.e. splash screen only):
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #Hide text and show splash
For the traditional, text display:
GRUB_CMDLINE_LINUX_DEFAULT= #Show text but not the splash
For the splash, but the ability to show the boot messages by pressing Esc:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
Or, finally, for just a (usually) black screen, try:
GRUB_CMDLINE_LINUX_DEFAULT=quiet #Don't show Ubuntu bootup text
GRUB_CMDLINE_LINUX="console=tty12" #Don't show kernel text
After editing the file, you need to run update-grub
.
sudo update-grub
For more details, see this: https://help.ubuntu.com/community/Grub2
edited Aug 2 '16 at 13:57
Steve Lorimer
231515
231515
answered Jul 29 '10 at 6:57
George Marian
1,09721214
1,09721214
1
How can you read that messages that are shown after you removed thesplash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.
– rubo77
Mar 31 '14 at 12:00
GRUB_HIDDEN_TIMEOUT
andGRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the errorWarning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
1
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
add a comment |
1
How can you read that messages that are shown after you removed thesplash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.
– rubo77
Mar 31 '14 at 12:00
GRUB_HIDDEN_TIMEOUT
andGRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the errorWarning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
1
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
1
1
How can you read that messages that are shown after you removed the
splash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.– rubo77
Mar 31 '14 at 12:00
How can you read that messages that are shown after you removed the
splash
from GRUB_CMDLINE_LINUX_DEFAULT? I can see the messages now when I start, but then X starts and they are gone.– rubo77
Mar 31 '14 at 12:00
GRUB_HIDDEN_TIMEOUT
and GRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the error Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
GRUB_HIDDEN_TIMEOUT
and GRUB_TIMEOUT
causes confusion don't understand why they keep two of these settings and displays the error Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported
– Denis Denisov
Jun 2 '15 at 0:15
1
1
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
@rubo77 The dmesg command: superuser.com/questions/176165/…
– George Marian
Jul 15 '15 at 22:21
add a comment |
I may be out of subject, but you can just press "escape" during boot, to show/hide the plymouth splash screen...
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
6
It works only if grub is not quiet, i.e.:GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
add a comment |
I may be out of subject, but you can just press "escape" during boot, to show/hide the plymouth splash screen...
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
6
It works only if grub is not quiet, i.e.:GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
add a comment |
I may be out of subject, but you can just press "escape" during boot, to show/hide the plymouth splash screen...
I may be out of subject, but you can just press "escape" during boot, to show/hide the plymouth splash screen...
answered Jul 29 '10 at 8:28
Little Jawa
2,27321525
2,27321525
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
6
It works only if grub is not quiet, i.e.:GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
add a comment |
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
6
It works only if grub is not quiet, i.e.:GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
By "easily turn on/off", I think it's just what he/she wants.
– Rodrigo Carvalho
Jul 29 '10 at 11:01
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Does that work on 10.04?
– Jim
Jul 29 '10 at 13:51
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
Yes. I actually tested it on both Lucid Lynx Desktop and Netbook editions before posting :-)
– Little Jawa
Jul 29 '10 at 13:54
6
6
It works only if grub is not quiet, i.e.:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
It works only if grub is not quiet, i.e.:
GRUB_CMDLINE_LINUX_DEFAULT="splash"
– sup
May 15 '11 at 9:01
add a comment |
There's a simple way of hiding all boot messages. In /etc/default/grub
, adjust the following:
GRUB_TIMEOUT=0 # Do not show the GRUB menu at all
GRUB_CMDLINE_LINUX_DEFAULT=quiet
GRUB_CMDLINE_LINUX="console=tty12" # Redirect the kernel output to another tty
After that, just sudo update-grub
, and it should be done.
1
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286
– Sergiy Kolodyazhnyy
Oct 20 at 21:26
add a comment |
There's a simple way of hiding all boot messages. In /etc/default/grub
, adjust the following:
GRUB_TIMEOUT=0 # Do not show the GRUB menu at all
GRUB_CMDLINE_LINUX_DEFAULT=quiet
GRUB_CMDLINE_LINUX="console=tty12" # Redirect the kernel output to another tty
After that, just sudo update-grub
, and it should be done.
1
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286
– Sergiy Kolodyazhnyy
Oct 20 at 21:26
add a comment |
There's a simple way of hiding all boot messages. In /etc/default/grub
, adjust the following:
GRUB_TIMEOUT=0 # Do not show the GRUB menu at all
GRUB_CMDLINE_LINUX_DEFAULT=quiet
GRUB_CMDLINE_LINUX="console=tty12" # Redirect the kernel output to another tty
After that, just sudo update-grub
, and it should be done.
There's a simple way of hiding all boot messages. In /etc/default/grub
, adjust the following:
GRUB_TIMEOUT=0 # Do not show the GRUB menu at all
GRUB_CMDLINE_LINUX_DEFAULT=quiet
GRUB_CMDLINE_LINUX="console=tty12" # Redirect the kernel output to another tty
After that, just sudo update-grub
, and it should be done.
answered Sep 24 '12 at 5:50
jweyrich
18114
18114
1
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286
– Sergiy Kolodyazhnyy
Oct 20 at 21:26
add a comment |
1
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286
– Sergiy Kolodyazhnyy
Oct 20 at 21:26
1
1
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
Doesn't work anymore in 18.04
– LucaM
Jun 5 at 11:17
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286– Sergiy Kolodyazhnyy
Oct 20 at 21:26
console=ttyS0
does seem to work in 18.04, I found that as answer to my own question. I may do some more research on it later on, though. See askubuntu.com/q/1085629/295286– Sergiy Kolodyazhnyy
Oct 20 at 21:26
add a comment |
You didn't identify whether you are on a server system or desktop, so I'll address both.
If you add splash
to /etc/default/grub/
in GRUB_CMDLINE_LINUX_DEFAULT
, Ubuntu will present you with a splash screen, either a simple text based progress bar or graphically via plymouth
, which I describe below.
Using plymouth
, a graphical startup animator, you can provide a pretty bootscreen that is well suited to desktop machines. You might not want to do this on a server, but it's up to you.
sudo apt-get install plymouth-theme-ubuntu-logo
add a comment |
You didn't identify whether you are on a server system or desktop, so I'll address both.
If you add splash
to /etc/default/grub/
in GRUB_CMDLINE_LINUX_DEFAULT
, Ubuntu will present you with a splash screen, either a simple text based progress bar or graphically via plymouth
, which I describe below.
Using plymouth
, a graphical startup animator, you can provide a pretty bootscreen that is well suited to desktop machines. You might not want to do this on a server, but it's up to you.
sudo apt-get install plymouth-theme-ubuntu-logo
add a comment |
You didn't identify whether you are on a server system or desktop, so I'll address both.
If you add splash
to /etc/default/grub/
in GRUB_CMDLINE_LINUX_DEFAULT
, Ubuntu will present you with a splash screen, either a simple text based progress bar or graphically via plymouth
, which I describe below.
Using plymouth
, a graphical startup animator, you can provide a pretty bootscreen that is well suited to desktop machines. You might not want to do this on a server, but it's up to you.
sudo apt-get install plymouth-theme-ubuntu-logo
You didn't identify whether you are on a server system or desktop, so I'll address both.
If you add splash
to /etc/default/grub/
in GRUB_CMDLINE_LINUX_DEFAULT
, Ubuntu will present you with a splash screen, either a simple text based progress bar or graphically via plymouth
, which I describe below.
Using plymouth
, a graphical startup animator, you can provide a pretty bootscreen that is well suited to desktop machines. You might not want to do this on a server, but it's up to you.
sudo apt-get install plymouth-theme-ubuntu-logo
answered Jul 29 '10 at 2:47
lfaraone
4,15912031
4,15912031
add a comment |
add a comment |
I use GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
to tell my laptop to not show me the startup picture but the boot messages … still works for 11.10
add a comment |
I use GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
to tell my laptop to not show me the startup picture but the boot messages … still works for 11.10
add a comment |
I use GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
to tell my laptop to not show me the startup picture but the boot messages … still works for 11.10
I use GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
to tell my laptop to not show me the startup picture but the boot messages … still works for 11.10
edited Nov 11 '11 at 1:34
Kris Harper
9,559114670
9,559114670
answered Oct 15 '11 at 8:31
manfred
211
211
add a comment |
add a comment |
If you remove quiet
option from GRUB_CMDLINE_LINUX_DEFAULT
to show boot messages it's sometimes necessary to also set loglevel
option to higher value. Otherwise some drivers may flood your tty
with notice messages. I use this line to enable boot messages:
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=4"
This way only significant system messages will be printed to the console.
add a comment |
If you remove quiet
option from GRUB_CMDLINE_LINUX_DEFAULT
to show boot messages it's sometimes necessary to also set loglevel
option to higher value. Otherwise some drivers may flood your tty
with notice messages. I use this line to enable boot messages:
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=4"
This way only significant system messages will be printed to the console.
add a comment |
If you remove quiet
option from GRUB_CMDLINE_LINUX_DEFAULT
to show boot messages it's sometimes necessary to also set loglevel
option to higher value. Otherwise some drivers may flood your tty
with notice messages. I use this line to enable boot messages:
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=4"
This way only significant system messages will be printed to the console.
If you remove quiet
option from GRUB_CMDLINE_LINUX_DEFAULT
to show boot messages it's sometimes necessary to also set loglevel
option to higher value. Otherwise some drivers may flood your tty
with notice messages. I use this line to enable boot messages:
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=4"
This way only significant system messages will be printed to the console.
answered Jan 14 at 19:39
Sergey
416
416
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f248%2fhow-can-i-show-or-hide-boot-messages-when-ubuntu-starts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
YElt4hBRhWbmU YJk1Y4Ut qd2dhEXB2w9 q2