How to show boot text instead of the splash or blank screen on Ubuntu/Kubuntu 18.04?
Editing kernel parameters and removing 'quiet' and 'splash' doesn't bring loading text - I continue seeing black screen with no text. Pressing ESC doesn't magically show anything either. The first thing which is displayed so far - SDDM login screen (Kubuntu here).
/etc/default/grub
contents:
$ cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
I'm not sure which version of GRUB should I report, so instead I'll just list all the GRUB packages that are installed:
grub-common 2.02-2ubuntu8.7
grub-efi-amd64 2.02-2ubuntu8.7
grub-efi-amd64-bin 2.02-2ubuntu8.7
grub-efi-amd64-signed 1.93.8+2.02-2ubuntu8.7
grub2-common 2.02-2ubuntu8.7
Also if it matters:
- Video card: nVidia GeForce 980 GTX Ti
- Video driver: proprietary version 410
- Kernel: 4.15.0-39
boot grub2 nvidia bootloader grub-efi
add a comment |
Editing kernel parameters and removing 'quiet' and 'splash' doesn't bring loading text - I continue seeing black screen with no text. Pressing ESC doesn't magically show anything either. The first thing which is displayed so far - SDDM login screen (Kubuntu here).
/etc/default/grub
contents:
$ cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
I'm not sure which version of GRUB should I report, so instead I'll just list all the GRUB packages that are installed:
grub-common 2.02-2ubuntu8.7
grub-efi-amd64 2.02-2ubuntu8.7
grub-efi-amd64-bin 2.02-2ubuntu8.7
grub-efi-amd64-signed 1.93.8+2.02-2ubuntu8.7
grub2-common 2.02-2ubuntu8.7
Also if it matters:
- Video card: nVidia GeForce 980 GTX Ti
- Video driver: proprietary version 410
- Kernel: 4.15.0-39
boot grub2 nvidia bootloader grub-efi
2
It might help seeing/etc/default/grub
contents. Also mention if you ransudo update-grub
after changing the file.
– WinEunuuchs2Unix
Nov 17 '18 at 16:56
@WinEunuuchs2Unix sorry, I should have shared it (updated). I didn't change this file yet - I only edited kernel parameters online when booting.
– Onkeltem
Nov 18 '18 at 9:17
You could try:GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
which is subtly different but it might not help. It's could be an issue with video driver on boot and you might need to use:GRUB_GFXMODE=640x480
or some derivative of it.
– WinEunuuchs2Unix
Nov 18 '18 at 15:44
add a comment |
Editing kernel parameters and removing 'quiet' and 'splash' doesn't bring loading text - I continue seeing black screen with no text. Pressing ESC doesn't magically show anything either. The first thing which is displayed so far - SDDM login screen (Kubuntu here).
/etc/default/grub
contents:
$ cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
I'm not sure which version of GRUB should I report, so instead I'll just list all the GRUB packages that are installed:
grub-common 2.02-2ubuntu8.7
grub-efi-amd64 2.02-2ubuntu8.7
grub-efi-amd64-bin 2.02-2ubuntu8.7
grub-efi-amd64-signed 1.93.8+2.02-2ubuntu8.7
grub2-common 2.02-2ubuntu8.7
Also if it matters:
- Video card: nVidia GeForce 980 GTX Ti
- Video driver: proprietary version 410
- Kernel: 4.15.0-39
boot grub2 nvidia bootloader grub-efi
Editing kernel parameters and removing 'quiet' and 'splash' doesn't bring loading text - I continue seeing black screen with no text. Pressing ESC doesn't magically show anything either. The first thing which is displayed so far - SDDM login screen (Kubuntu here).
/etc/default/grub
contents:
$ cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
I'm not sure which version of GRUB should I report, so instead I'll just list all the GRUB packages that are installed:
grub-common 2.02-2ubuntu8.7
grub-efi-amd64 2.02-2ubuntu8.7
grub-efi-amd64-bin 2.02-2ubuntu8.7
grub-efi-amd64-signed 1.93.8+2.02-2ubuntu8.7
grub2-common 2.02-2ubuntu8.7
Also if it matters:
- Video card: nVidia GeForce 980 GTX Ti
- Video driver: proprietary version 410
- Kernel: 4.15.0-39
boot grub2 nvidia bootloader grub-efi
boot grub2 nvidia bootloader grub-efi
edited Nov 18 '18 at 9:15
Onkeltem
asked Nov 17 '18 at 15:54
OnkeltemOnkeltem
1012
1012
2
It might help seeing/etc/default/grub
contents. Also mention if you ransudo update-grub
after changing the file.
– WinEunuuchs2Unix
Nov 17 '18 at 16:56
@WinEunuuchs2Unix sorry, I should have shared it (updated). I didn't change this file yet - I only edited kernel parameters online when booting.
– Onkeltem
Nov 18 '18 at 9:17
You could try:GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
which is subtly different but it might not help. It's could be an issue with video driver on boot and you might need to use:GRUB_GFXMODE=640x480
or some derivative of it.
– WinEunuuchs2Unix
Nov 18 '18 at 15:44
add a comment |
2
It might help seeing/etc/default/grub
contents. Also mention if you ransudo update-grub
after changing the file.
– WinEunuuchs2Unix
Nov 17 '18 at 16:56
@WinEunuuchs2Unix sorry, I should have shared it (updated). I didn't change this file yet - I only edited kernel parameters online when booting.
– Onkeltem
Nov 18 '18 at 9:17
You could try:GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
which is subtly different but it might not help. It's could be an issue with video driver on boot and you might need to use:GRUB_GFXMODE=640x480
or some derivative of it.
– WinEunuuchs2Unix
Nov 18 '18 at 15:44
2
2
It might help seeing
/etc/default/grub
contents. Also mention if you ran sudo update-grub
after changing the file.– WinEunuuchs2Unix
Nov 17 '18 at 16:56
It might help seeing
/etc/default/grub
contents. Also mention if you ran sudo update-grub
after changing the file.– WinEunuuchs2Unix
Nov 17 '18 at 16:56
@WinEunuuchs2Unix sorry, I should have shared it (updated). I didn't change this file yet - I only edited kernel parameters online when booting.
– Onkeltem
Nov 18 '18 at 9:17
@WinEunuuchs2Unix sorry, I should have shared it (updated). I didn't change this file yet - I only edited kernel parameters online when booting.
– Onkeltem
Nov 18 '18 at 9:17
You could try:
GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
which is subtly different but it might not help. It's could be an issue with video driver on boot and you might need to use: GRUB_GFXMODE=640x480
or some derivative of it.– WinEunuuchs2Unix
Nov 18 '18 at 15:44
You could try:
GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
which is subtly different but it might not help. It's could be an issue with video driver on boot and you might need to use: GRUB_GFXMODE=640x480
or some derivative of it.– WinEunuuchs2Unix
Nov 18 '18 at 15:44
add a comment |
1 Answer
1
active
oldest
votes
Make sure you don't have plymouth-theme-ubuntu-text package installed.
Check if you have it using dpkg -s plymouth-theme-ubuntu-text.
If exists remove it by apt-get remove plymouth-theme-ubuntu-text.
New contributor
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%2f1093753%2fhow-to-show-boot-text-instead-of-the-splash-or-blank-screen-on-ubuntu-kubuntu-18%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Make sure you don't have plymouth-theme-ubuntu-text package installed.
Check if you have it using dpkg -s plymouth-theme-ubuntu-text.
If exists remove it by apt-get remove plymouth-theme-ubuntu-text.
New contributor
add a comment |
Make sure you don't have plymouth-theme-ubuntu-text package installed.
Check if you have it using dpkg -s plymouth-theme-ubuntu-text.
If exists remove it by apt-get remove plymouth-theme-ubuntu-text.
New contributor
add a comment |
Make sure you don't have plymouth-theme-ubuntu-text package installed.
Check if you have it using dpkg -s plymouth-theme-ubuntu-text.
If exists remove it by apt-get remove plymouth-theme-ubuntu-text.
New contributor
Make sure you don't have plymouth-theme-ubuntu-text package installed.
Check if you have it using dpkg -s plymouth-theme-ubuntu-text.
If exists remove it by apt-get remove plymouth-theme-ubuntu-text.
New contributor
New contributor
answered 8 hours ago
Alex SegedaAlex Segeda
1
1
New contributor
New contributor
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.
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%2f1093753%2fhow-to-show-boot-text-instead-of-the-splash-or-blank-screen-on-ubuntu-kubuntu-18%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
2
It might help seeing
/etc/default/grub
contents. Also mention if you ransudo update-grub
after changing the file.– WinEunuuchs2Unix
Nov 17 '18 at 16:56
@WinEunuuchs2Unix sorry, I should have shared it (updated). I didn't change this file yet - I only edited kernel parameters online when booting.
– Onkeltem
Nov 18 '18 at 9:17
You could try:
GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
which is subtly different but it might not help. It's could be an issue with video driver on boot and you might need to use:GRUB_GFXMODE=640x480
or some derivative of it.– WinEunuuchs2Unix
Nov 18 '18 at 15:44