How to change boot splash screen in 18.04
I have done this in the past in 16.04 and 17.10 but in 18.04 I can not get plymouth manager to work. Downloaded it from the software center but it doesn't work. Is there a guide available that will let me do it in terminal?
boot plymouth
add a comment |
I have done this in the past in 16.04 and 17.10 but in 18.04 I can not get plymouth manager to work. Downloaded it from the software center but it doesn't work. Is there a guide available that will let me do it in terminal?
boot plymouth
1
i have successfully installed this playmouth theme in 18.04 gnome-look.org/p/1230234
– PRATAP
Jun 14 '18 at 3:29
Doh! I didn’t realise you were talking about plymouth manager (rather than plymouth). I had trouble with it and found the command line much more reliable. See the answer below.
– Moilleadóir
Jun 14 '18 at 3:41
add a comment |
I have done this in the past in 16.04 and 17.10 but in 18.04 I can not get plymouth manager to work. Downloaded it from the software center but it doesn't work. Is there a guide available that will let me do it in terminal?
boot plymouth
I have done this in the past in 16.04 and 17.10 but in 18.04 I can not get plymouth manager to work. Downloaded it from the software center but it doesn't work. Is there a guide available that will let me do it in terminal?
boot plymouth
boot plymouth
asked Jun 13 '18 at 23:15
StuStu
36112
36112
1
i have successfully installed this playmouth theme in 18.04 gnome-look.org/p/1230234
– PRATAP
Jun 14 '18 at 3:29
Doh! I didn’t realise you were talking about plymouth manager (rather than plymouth). I had trouble with it and found the command line much more reliable. See the answer below.
– Moilleadóir
Jun 14 '18 at 3:41
add a comment |
1
i have successfully installed this playmouth theme in 18.04 gnome-look.org/p/1230234
– PRATAP
Jun 14 '18 at 3:29
Doh! I didn’t realise you were talking about plymouth manager (rather than plymouth). I had trouble with it and found the command line much more reliable. See the answer below.
– Moilleadóir
Jun 14 '18 at 3:41
1
1
i have successfully installed this playmouth theme in 18.04 gnome-look.org/p/1230234
– PRATAP
Jun 14 '18 at 3:29
i have successfully installed this playmouth theme in 18.04 gnome-look.org/p/1230234
– PRATAP
Jun 14 '18 at 3:29
Doh! I didn’t realise you were talking about plymouth manager (rather than plymouth). I had trouble with it and found the command line much more reliable. See the answer below.
– Moilleadóir
Jun 14 '18 at 3:41
Doh! I didn’t realise you were talking about plymouth manager (rather than plymouth). I had trouble with it and found the command line much more reliable. See the answer below.
– Moilleadóir
Jun 14 '18 at 3:41
add a comment |
2 Answers
2
active
oldest
votes
The same methods described here, do still work in 18.04.
NB: between 14.04 and 16.04 the location of Plymouth themes changed to /usr/share/plymouth/themes. If you have an old theme its .plymouth file might point to /lib/plymouth/themes/.
Installing a new theme
Easy if it's packaged - sudo apt install
Otherwise you need to copy its folder or extract its archive to /usr/share/plymouth/themes. Then you need to install it...
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/THEME/THEME.plymouth 100
...replacing THEME with the theme name.
Choosing the theme
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
Testing
You can also test Plymouth without rebooting...
sudo apt install plymouth-x11
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
add a comment |
It is very easy!
Refer to https://blog.naver.com/limnyh/221483597090
Then, You'll be satisfied.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f1046370%2fhow-to-change-boot-splash-screen-in-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The same methods described here, do still work in 18.04.
NB: between 14.04 and 16.04 the location of Plymouth themes changed to /usr/share/plymouth/themes. If you have an old theme its .plymouth file might point to /lib/plymouth/themes/.
Installing a new theme
Easy if it's packaged - sudo apt install
Otherwise you need to copy its folder or extract its archive to /usr/share/plymouth/themes. Then you need to install it...
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/THEME/THEME.plymouth 100
...replacing THEME with the theme name.
Choosing the theme
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
Testing
You can also test Plymouth without rebooting...
sudo apt install plymouth-x11
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
add a comment |
The same methods described here, do still work in 18.04.
NB: between 14.04 and 16.04 the location of Plymouth themes changed to /usr/share/plymouth/themes. If you have an old theme its .plymouth file might point to /lib/plymouth/themes/.
Installing a new theme
Easy if it's packaged - sudo apt install
Otherwise you need to copy its folder or extract its archive to /usr/share/plymouth/themes. Then you need to install it...
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/THEME/THEME.plymouth 100
...replacing THEME with the theme name.
Choosing the theme
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
Testing
You can also test Plymouth without rebooting...
sudo apt install plymouth-x11
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
add a comment |
The same methods described here, do still work in 18.04.
NB: between 14.04 and 16.04 the location of Plymouth themes changed to /usr/share/plymouth/themes. If you have an old theme its .plymouth file might point to /lib/plymouth/themes/.
Installing a new theme
Easy if it's packaged - sudo apt install
Otherwise you need to copy its folder or extract its archive to /usr/share/plymouth/themes. Then you need to install it...
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/THEME/THEME.plymouth 100
...replacing THEME with the theme name.
Choosing the theme
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
Testing
You can also test Plymouth without rebooting...
sudo apt install plymouth-x11
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
The same methods described here, do still work in 18.04.
NB: between 14.04 and 16.04 the location of Plymouth themes changed to /usr/share/plymouth/themes. If you have an old theme its .plymouth file might point to /lib/plymouth/themes/.
Installing a new theme
Easy if it's packaged - sudo apt install
Otherwise you need to copy its folder or extract its archive to /usr/share/plymouth/themes. Then you need to install it...
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/THEME/THEME.plymouth 100
...replacing THEME with the theme name.
Choosing the theme
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
Testing
You can also test Plymouth without rebooting...
sudo apt install plymouth-x11
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
edited Jun 14 '18 at 3:52
answered Jun 14 '18 at 3:35
JackJack
813
813
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
add a comment |
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
Thank you. I finally got it to go OK. Biggest problem seems to be that it was an old splash screen and I couldn't remember how I had made it work in 17.10. There must be an easy way to migrate or change them from the old /lib/plymouth/themes to the new path but I don't know what that is. Went through and edited every reference in every file and that worked but was time consuming.
– Stu
Jun 14 '18 at 16:21
add a comment |
It is very easy!
Refer to https://blog.naver.com/limnyh/221483597090
Then, You'll be satisfied.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
It is very easy!
Refer to https://blog.naver.com/limnyh/221483597090
Then, You'll be satisfied.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
It is very easy!
Refer to https://blog.naver.com/limnyh/221483597090
Then, You'll be satisfied.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
It is very easy!
Refer to https://blog.naver.com/limnyh/221483597090
Then, You'll be satisfied.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 17 mins ago
Limn YounghoarLimn Younghoar
1
1
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Limn Younghoar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f1046370%2fhow-to-change-boot-splash-screen-in-18-04%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
1
i have successfully installed this playmouth theme in 18.04 gnome-look.org/p/1230234
– PRATAP
Jun 14 '18 at 3:29
Doh! I didn’t realise you were talking about plymouth manager (rather than plymouth). I had trouble with it and found the command line much more reliable. See the answer below.
– Moilleadóir
Jun 14 '18 at 3:41