Plymouth themes aren't appearing
I use Ubuntu 16.10. Even though I choose a plymouth theme, still some codes and messages (with green "OK" in every message) are appearing while booting. I updated plymouth theme via sudo update-alternatives --config default.plymouth
then sudo update-initramfs -u
.
I use Intel graphic driver
plymouth
add a comment |
I use Ubuntu 16.10. Even though I choose a plymouth theme, still some codes and messages (with green "OK" in every message) are appearing while booting. I updated plymouth theme via sudo update-alternatives --config default.plymouth
then sudo update-initramfs -u
.
I use Intel graphic driver
plymouth
add a comment |
I use Ubuntu 16.10. Even though I choose a plymouth theme, still some codes and messages (with green "OK" in every message) are appearing while booting. I updated plymouth theme via sudo update-alternatives --config default.plymouth
then sudo update-initramfs -u
.
I use Intel graphic driver
plymouth
I use Ubuntu 16.10. Even though I choose a plymouth theme, still some codes and messages (with green "OK" in every message) are appearing while booting. I updated plymouth theme via sudo update-alternatives --config default.plymouth
then sudo update-initramfs -u
.
I use Intel graphic driver
plymouth
plymouth
asked Jun 17 '17 at 18:19
SteveSteve
1582618
1582618
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
I spent 2 days research on plymouth and coding, real fun by the way, try this.
Check your possible resolutions with sudo hwinfo --framebuffer
and
make following entries in sudo nano /etc/default/grub
.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE="1920x1080x32"
GRUB_GFXPAYLOAD_LINUX="keep"
GRUB_VIDEO_BACKEND="vbe"
If the entries are done, run:
sudo update-grub
Test splash with this command:
sudo plymouthd --debug ; sudo plymouth --show-splash ; for ((I=0;I<10;I++)); do sleep 1 ; sudo plymouth --update=event$I ; done ; sudo plymouth --quit
If you get some splash even just Ubuntu with 4 dumb dots Plymouth is working.
Please also check the entries in your splash theme script file in this example it is ubuntu-sunrise theme, you can use following command with your path to the script file
sudo nano /usr/share/plymouth/themes/ubuntu-sunrise/ubuntu-sunrise.script
There must be 2 entries like this:
Insert the correct paths,
ImageDir=/usr/share/plymouth/themes/yourtheme
ScriptFile=/usr/share/plymouth/themes/yourtheme/yourtheme.script
Finally once more
sudo update-initramfs -u
Reboot.
add a comment |
Edit /etc/default/grub: you need line 9 to read:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Then run:
sudo update-grub
sudo update-initramfs -u
NOTE: the last step is required when ever you change the plymouth theme.
add a comment |
sudo -H echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash
sudo update-initramfs -u
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%2f926511%2fplymouth-themes-arent-appearing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I spent 2 days research on plymouth and coding, real fun by the way, try this.
Check your possible resolutions with sudo hwinfo --framebuffer
and
make following entries in sudo nano /etc/default/grub
.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE="1920x1080x32"
GRUB_GFXPAYLOAD_LINUX="keep"
GRUB_VIDEO_BACKEND="vbe"
If the entries are done, run:
sudo update-grub
Test splash with this command:
sudo plymouthd --debug ; sudo plymouth --show-splash ; for ((I=0;I<10;I++)); do sleep 1 ; sudo plymouth --update=event$I ; done ; sudo plymouth --quit
If you get some splash even just Ubuntu with 4 dumb dots Plymouth is working.
Please also check the entries in your splash theme script file in this example it is ubuntu-sunrise theme, you can use following command with your path to the script file
sudo nano /usr/share/plymouth/themes/ubuntu-sunrise/ubuntu-sunrise.script
There must be 2 entries like this:
Insert the correct paths,
ImageDir=/usr/share/plymouth/themes/yourtheme
ScriptFile=/usr/share/plymouth/themes/yourtheme/yourtheme.script
Finally once more
sudo update-initramfs -u
Reboot.
add a comment |
I spent 2 days research on plymouth and coding, real fun by the way, try this.
Check your possible resolutions with sudo hwinfo --framebuffer
and
make following entries in sudo nano /etc/default/grub
.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE="1920x1080x32"
GRUB_GFXPAYLOAD_LINUX="keep"
GRUB_VIDEO_BACKEND="vbe"
If the entries are done, run:
sudo update-grub
Test splash with this command:
sudo plymouthd --debug ; sudo plymouth --show-splash ; for ((I=0;I<10;I++)); do sleep 1 ; sudo plymouth --update=event$I ; done ; sudo plymouth --quit
If you get some splash even just Ubuntu with 4 dumb dots Plymouth is working.
Please also check the entries in your splash theme script file in this example it is ubuntu-sunrise theme, you can use following command with your path to the script file
sudo nano /usr/share/plymouth/themes/ubuntu-sunrise/ubuntu-sunrise.script
There must be 2 entries like this:
Insert the correct paths,
ImageDir=/usr/share/plymouth/themes/yourtheme
ScriptFile=/usr/share/plymouth/themes/yourtheme/yourtheme.script
Finally once more
sudo update-initramfs -u
Reboot.
add a comment |
I spent 2 days research on plymouth and coding, real fun by the way, try this.
Check your possible resolutions with sudo hwinfo --framebuffer
and
make following entries in sudo nano /etc/default/grub
.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE="1920x1080x32"
GRUB_GFXPAYLOAD_LINUX="keep"
GRUB_VIDEO_BACKEND="vbe"
If the entries are done, run:
sudo update-grub
Test splash with this command:
sudo plymouthd --debug ; sudo plymouth --show-splash ; for ((I=0;I<10;I++)); do sleep 1 ; sudo plymouth --update=event$I ; done ; sudo plymouth --quit
If you get some splash even just Ubuntu with 4 dumb dots Plymouth is working.
Please also check the entries in your splash theme script file in this example it is ubuntu-sunrise theme, you can use following command with your path to the script file
sudo nano /usr/share/plymouth/themes/ubuntu-sunrise/ubuntu-sunrise.script
There must be 2 entries like this:
Insert the correct paths,
ImageDir=/usr/share/plymouth/themes/yourtheme
ScriptFile=/usr/share/plymouth/themes/yourtheme/yourtheme.script
Finally once more
sudo update-initramfs -u
Reboot.
I spent 2 days research on plymouth and coding, real fun by the way, try this.
Check your possible resolutions with sudo hwinfo --framebuffer
and
make following entries in sudo nano /etc/default/grub
.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE="1920x1080x32"
GRUB_GFXPAYLOAD_LINUX="keep"
GRUB_VIDEO_BACKEND="vbe"
If the entries are done, run:
sudo update-grub
Test splash with this command:
sudo plymouthd --debug ; sudo plymouth --show-splash ; for ((I=0;I<10;I++)); do sleep 1 ; sudo plymouth --update=event$I ; done ; sudo plymouth --quit
If you get some splash even just Ubuntu with 4 dumb dots Plymouth is working.
Please also check the entries in your splash theme script file in this example it is ubuntu-sunrise theme, you can use following command with your path to the script file
sudo nano /usr/share/plymouth/themes/ubuntu-sunrise/ubuntu-sunrise.script
There must be 2 entries like this:
Insert the correct paths,
ImageDir=/usr/share/plymouth/themes/yourtheme
ScriptFile=/usr/share/plymouth/themes/yourtheme/yourtheme.script
Finally once more
sudo update-initramfs -u
Reboot.
edited 6 hours ago
Kulfy
4,84151743
4,84151743
answered Jun 17 '17 at 23:21
hjsnuxhjsnux
263
263
add a comment |
add a comment |
Edit /etc/default/grub: you need line 9 to read:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Then run:
sudo update-grub
sudo update-initramfs -u
NOTE: the last step is required when ever you change the plymouth theme.
add a comment |
Edit /etc/default/grub: you need line 9 to read:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Then run:
sudo update-grub
sudo update-initramfs -u
NOTE: the last step is required when ever you change the plymouth theme.
add a comment |
Edit /etc/default/grub: you need line 9 to read:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Then run:
sudo update-grub
sudo update-initramfs -u
NOTE: the last step is required when ever you change the plymouth theme.
Edit /etc/default/grub: you need line 9 to read:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Then run:
sudo update-grub
sudo update-initramfs -u
NOTE: the last step is required when ever you change the plymouth theme.
edited 6 hours ago
Kulfy
4,84151743
4,84151743
answered Jun 17 '17 at 18:26
raveryravery
5,49351132
5,49351132
add a comment |
add a comment |
sudo -H echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash
sudo update-initramfs -u
add a comment |
sudo -H echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash
sudo update-initramfs -u
add a comment |
sudo -H echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash
sudo update-initramfs -u
sudo -H echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash
sudo update-initramfs -u
answered Jun 24 '17 at 2:30
Michael xGrindMichael xGrind
192
192
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%2f926511%2fplymouth-themes-arent-appearing%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