Plymouth Boot Splash - Turn off switching to text
up vote
3
down vote
favorite
I am working on an appliance system based on CentOS 6. I have created a custom boot splash, but I can't find any information on how I would disable the feature to switch to text mode (switching the splash on and off) through a keypress. I do not want a user to be able to drop the splash and view the boot messages. Can anyone point me in the right direction?
centos bootsplash plymouth
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
up vote
3
down vote
favorite
I am working on an appliance system based on CentOS 6. I have created a custom boot splash, but I can't find any information on how I would disable the feature to switch to text mode (switching the splash on and off) through a keypress. I do not want a user to be able to drop the splash and view the boot messages. Can anyone point me in the right direction?
centos bootsplash plymouth
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am working on an appliance system based on CentOS 6. I have created a custom boot splash, but I can't find any information on how I would disable the feature to switch to text mode (switching the splash on and off) through a keypress. I do not want a user to be able to drop the splash and view the boot messages. Can anyone point me in the right direction?
centos bootsplash plymouth
I am working on an appliance system based on CentOS 6. I have created a custom boot splash, but I can't find any information on how I would disable the feature to switch to text mode (switching the splash on and off) through a keypress. I do not want a user to be able to drop the splash and view the boot messages. Can anyone point me in the right direction?
centos bootsplash plymouth
centos bootsplash plymouth
asked Mar 28 '15 at 17:07
GROND
1168
1168
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You should add plymouth quit to your rc.local file. plymouth quit should do the trick..Here is a post of mine when I ran into a problem with plymouth: rc.local with read will not echo key strokes
I also found it useful to add nomodeset to the isolinux.cfg file
default linux
prompt 1
timeout 0
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append initrd=initrd.img text ks=cdrom:/ks.cfg nousb nomodeset
Also, check out your ks.cfg file and make sure that rhgb quiet are NOT in the --apend= parm on your bootloader line.
CentOS 6.4 Kickstart bootloader problem
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would thenomodesetoption prevent this functionality?
– GROND
Apr 1 '15 at 14:20
nomodesetwill not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out therc.localfile..Also, you probably do wantrhgb quieton yourbootloaderline in yourks.cfgfile. I should've read your post a bit closer before answering..
– GoinOff
Apr 1 '15 at 14:48
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appendedrhgb quiet vga=791to my grub.conf boot line), and addingnomodesetactually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.
– GROND
Apr 2 '15 at 13:31
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
Maybe try: Try/usr/sbin/plymouth-set-default-theme --listThen tryyum search plymouth-pluginI had a number of different plugins that can be usedplymouth-plugin-fade-throbber.i686: Plymouth "Fade-Throbber" pluginplymouth-plugin-label.i686: Plymouth label pluginplymouth-plugin-script.i686: Plymouth "script" pluginplymouth-plugin-space-flares.i686: Plymouth "space-flares" pluginplymouth-plugin-throbgress.i686: Plymouth "Throbgress" pluginplymouth-plugin-two-step.i686: Plymouth "two-step" plugin
– GoinOff
Apr 2 '15 at 14:05
|
show 5 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You should add plymouth quit to your rc.local file. plymouth quit should do the trick..Here is a post of mine when I ran into a problem with plymouth: rc.local with read will not echo key strokes
I also found it useful to add nomodeset to the isolinux.cfg file
default linux
prompt 1
timeout 0
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append initrd=initrd.img text ks=cdrom:/ks.cfg nousb nomodeset
Also, check out your ks.cfg file and make sure that rhgb quiet are NOT in the --apend= parm on your bootloader line.
CentOS 6.4 Kickstart bootloader problem
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would thenomodesetoption prevent this functionality?
– GROND
Apr 1 '15 at 14:20
nomodesetwill not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out therc.localfile..Also, you probably do wantrhgb quieton yourbootloaderline in yourks.cfgfile. I should've read your post a bit closer before answering..
– GoinOff
Apr 1 '15 at 14:48
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appendedrhgb quiet vga=791to my grub.conf boot line), and addingnomodesetactually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.
– GROND
Apr 2 '15 at 13:31
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
Maybe try: Try/usr/sbin/plymouth-set-default-theme --listThen tryyum search plymouth-pluginI had a number of different plugins that can be usedplymouth-plugin-fade-throbber.i686: Plymouth "Fade-Throbber" pluginplymouth-plugin-label.i686: Plymouth label pluginplymouth-plugin-script.i686: Plymouth "script" pluginplymouth-plugin-space-flares.i686: Plymouth "space-flares" pluginplymouth-plugin-throbgress.i686: Plymouth "Throbgress" pluginplymouth-plugin-two-step.i686: Plymouth "two-step" plugin
– GoinOff
Apr 2 '15 at 14:05
|
show 5 more comments
up vote
0
down vote
You should add plymouth quit to your rc.local file. plymouth quit should do the trick..Here is a post of mine when I ran into a problem with plymouth: rc.local with read will not echo key strokes
I also found it useful to add nomodeset to the isolinux.cfg file
default linux
prompt 1
timeout 0
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append initrd=initrd.img text ks=cdrom:/ks.cfg nousb nomodeset
Also, check out your ks.cfg file and make sure that rhgb quiet are NOT in the --apend= parm on your bootloader line.
CentOS 6.4 Kickstart bootloader problem
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would thenomodesetoption prevent this functionality?
– GROND
Apr 1 '15 at 14:20
nomodesetwill not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out therc.localfile..Also, you probably do wantrhgb quieton yourbootloaderline in yourks.cfgfile. I should've read your post a bit closer before answering..
– GoinOff
Apr 1 '15 at 14:48
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appendedrhgb quiet vga=791to my grub.conf boot line), and addingnomodesetactually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.
– GROND
Apr 2 '15 at 13:31
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
Maybe try: Try/usr/sbin/plymouth-set-default-theme --listThen tryyum search plymouth-pluginI had a number of different plugins that can be usedplymouth-plugin-fade-throbber.i686: Plymouth "Fade-Throbber" pluginplymouth-plugin-label.i686: Plymouth label pluginplymouth-plugin-script.i686: Plymouth "script" pluginplymouth-plugin-space-flares.i686: Plymouth "space-flares" pluginplymouth-plugin-throbgress.i686: Plymouth "Throbgress" pluginplymouth-plugin-two-step.i686: Plymouth "two-step" plugin
– GoinOff
Apr 2 '15 at 14:05
|
show 5 more comments
up vote
0
down vote
up vote
0
down vote
You should add plymouth quit to your rc.local file. plymouth quit should do the trick..Here is a post of mine when I ran into a problem with plymouth: rc.local with read will not echo key strokes
I also found it useful to add nomodeset to the isolinux.cfg file
default linux
prompt 1
timeout 0
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append initrd=initrd.img text ks=cdrom:/ks.cfg nousb nomodeset
Also, check out your ks.cfg file and make sure that rhgb quiet are NOT in the --apend= parm on your bootloader line.
CentOS 6.4 Kickstart bootloader problem
You should add plymouth quit to your rc.local file. plymouth quit should do the trick..Here is a post of mine when I ran into a problem with plymouth: rc.local with read will not echo key strokes
I also found it useful to add nomodeset to the isolinux.cfg file
default linux
prompt 1
timeout 0
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append initrd=initrd.img text ks=cdrom:/ks.cfg nousb nomodeset
Also, check out your ks.cfg file and make sure that rhgb quiet are NOT in the --apend= parm on your bootloader line.
CentOS 6.4 Kickstart bootloader problem
edited Apr 13 '17 at 12:36
Community♦
1
1
answered Mar 31 '15 at 15:00
GoinOff
3563925
3563925
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would thenomodesetoption prevent this functionality?
– GROND
Apr 1 '15 at 14:20
nomodesetwill not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out therc.localfile..Also, you probably do wantrhgb quieton yourbootloaderline in yourks.cfgfile. I should've read your post a bit closer before answering..
– GoinOff
Apr 1 '15 at 14:48
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appendedrhgb quiet vga=791to my grub.conf boot line), and addingnomodesetactually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.
– GROND
Apr 2 '15 at 13:31
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
Maybe try: Try/usr/sbin/plymouth-set-default-theme --listThen tryyum search plymouth-pluginI had a number of different plugins that can be usedplymouth-plugin-fade-throbber.i686: Plymouth "Fade-Throbber" pluginplymouth-plugin-label.i686: Plymouth label pluginplymouth-plugin-script.i686: Plymouth "script" pluginplymouth-plugin-space-flares.i686: Plymouth "space-flares" pluginplymouth-plugin-throbgress.i686: Plymouth "Throbgress" pluginplymouth-plugin-two-step.i686: Plymouth "two-step" plugin
– GoinOff
Apr 2 '15 at 14:05
|
show 5 more comments
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would thenomodesetoption prevent this functionality?
– GROND
Apr 1 '15 at 14:20
nomodesetwill not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out therc.localfile..Also, you probably do wantrhgb quieton yourbootloaderline in yourks.cfgfile. I should've read your post a bit closer before answering..
– GoinOff
Apr 1 '15 at 14:48
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appendedrhgb quiet vga=791to my grub.conf boot line), and addingnomodesetactually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.
– GROND
Apr 2 '15 at 13:31
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
Maybe try: Try/usr/sbin/plymouth-set-default-theme --listThen tryyum search plymouth-pluginI had a number of different plugins that can be usedplymouth-plugin-fade-throbber.i686: Plymouth "Fade-Throbber" pluginplymouth-plugin-label.i686: Plymouth label pluginplymouth-plugin-script.i686: Plymouth "script" pluginplymouth-plugin-space-flares.i686: Plymouth "space-flares" pluginplymouth-plugin-throbgress.i686: Plymouth "Throbgress" pluginplymouth-plugin-two-step.i686: Plymouth "two-step" plugin
– GoinOff
Apr 2 '15 at 14:05
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would the
nomodeset option prevent this functionality?– GROND
Apr 1 '15 at 14:20
Thanks for the response, but quitting the bootsplash is not the issue. Currently, the plymouth splash image comes up fine, but it is possible to press a key and have the splash image drop. This allows the user to view the boot messages, which I do not want. Would the
nomodeset option prevent this functionality?– GROND
Apr 1 '15 at 14:20
nomodeset will not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out the rc.local file..Also, you probably do want rhgb quiet on your bootloader line in your ks.cfg file. I should've read your post a bit closer before answering..– GoinOff
Apr 1 '15 at 14:48
nomodeset will not help you with what you're after. Is this for installation only or every time the machine boots?? You might want to check out the rc.local file..Also, you probably do want rhgb quiet on your bootloader line in your ks.cfg file. I should've read your post a bit closer before answering..– GoinOff
Apr 1 '15 at 14:48
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appended
rhgb quiet vga=791 to my grub.conf boot line), and adding nomodeset actually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.– GROND
Apr 2 '15 at 13:31
I would like this behavior at all times following the installation. My kickstart infrastructure does not have any issues (I've appended
rhgb quiet vga=791 to my grub.conf boot line), and adding nomodeset actually causes the bootsplash to be disabled. I was thinking that I would need to supply a parameter to plymouthd when it is started (I think by rc.sysinit) or perhaps remove a parameter.– GROND
Apr 2 '15 at 13:31
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
I ran into this post centos.org/forums/viewtopic.php?t=2588 looks like it's a pain in the $ss. Here is another link: tejasbarot.com/2009/01/19/enable-graphical-boot-with-plymouth/…
– GoinOff
Apr 2 '15 at 13:55
Maybe try: Try
/usr/sbin/plymouth-set-default-theme --list Then try yum search plymouth-plugin I had a number of different plugins that can be used plymouth-plugin-fade-throbber.i686 : Plymouth "Fade-Throbber" plugin plymouth-plugin-label.i686 : Plymouth label plugin plymouth-plugin-script.i686 : Plymouth "script" plugin plymouth-plugin-space-flares.i686 : Plymouth "space-flares" plugin plymouth-plugin-throbgress.i686 : Plymouth "Throbgress" plugin plymouth-plugin-two-step.i686 : Plymouth "two-step" plugin– GoinOff
Apr 2 '15 at 14:05
Maybe try: Try
/usr/sbin/plymouth-set-default-theme --list Then try yum search plymouth-plugin I had a number of different plugins that can be used plymouth-plugin-fade-throbber.i686 : Plymouth "Fade-Throbber" plugin plymouth-plugin-label.i686 : Plymouth label plugin plymouth-plugin-script.i686 : Plymouth "script" plugin plymouth-plugin-space-flares.i686 : Plymouth "space-flares" plugin plymouth-plugin-throbgress.i686 : Plymouth "Throbgress" plugin plymouth-plugin-two-step.i686 : Plymouth "two-step" plugin– GoinOff
Apr 2 '15 at 14:05
|
show 5 more comments
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%2funix.stackexchange.com%2fquestions%2f193109%2fplymouth-boot-splash-turn-off-switching-to-text%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