Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 8th November 2012, 07:11 PM
pnelsonsr's Avatar
pnelsonsr Offline
Registered User
 
Join Date: Jan 2007
Location: WA
Posts: 133
windows_7ie
Unhappy Turn Off Graphical Boot

F16 during boot up I want to see the loading. I had this set up by having

/etc/systemd/system/default.target -> /lib/systemd/system/runlevel3.target

And making sure "rhgb" was removed from /boot/grub2/grub.cfg

I do have the FS encrypted. But all this worked fine.

After a kernel upgrade (not sure which one...) the system goes to graphical screen to ask for the FS password and then displays the Fedora logo which fills up as it boots the system. I want to see the loading of the system.

I've checked the above setting and it looks correct, but something is sending it to this graphical boot. After the graphical boot it goes to the command line like it should so I don't think this is related to run level 3. Seems more related to grub.cfg but I cant find how to turn this off. It use to be removing "rhgb" that did it. Is there some other setting in grub.cfg that turns off graphical boot? My F17 systems are not doing graphical boot.
Reply With Quote
  #2  
Old 8th November 2012, 07:33 PM
Skull One's Avatar
Skull One Offline
Registered User
 
Join Date: Jun 2010
Location: Lost...
Posts: 552
linuxredhatmozilla
Re: Turn Off Graphical Boot

After a kernel update, grub.cfg is regenerated.
The file to modify is: /etc/default/grub; remove rhgb in the GRUB_CMDLINE_LINUX entry.
Then, regenerate grub.cfg to apply the changes:
Code:
grub2-mkconfig -o /boot/grub2/grub.cfg
__________________
:confused:
Reply With Quote
  #3  
Old 8th November 2012, 07:36 PM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,126
linuxchrome
Re: Turn Off Graphical Boot

It's a Plymouth thing. The easy fix:
Code:
# plymouth-set-default-theme details --rebuild-initrd
No need to change any GRUB configuration, though you can do it that way if you wish.

Last edited by PabloTwo; 8th November 2012 at 07:38 PM.
Reply With Quote
  #4  
Old 8th November 2012, 07:48 PM
pnelsonsr's Avatar
pnelsonsr Offline
Registered User
 
Join Date: Jan 2007
Location: WA
Posts: 133
windows_7ie
Talking Re: Turn Off Graphical Boot

@skull one -> Forgot to mention that I had removed rhgb from /etc/default/grub long ago. But did notice that there was a new grub.rpmnew there so I copied it over to /etc/ default/grub (removing the rhgb from it as well). But I didn't do the grub2-mkconfig -o /boot/grub2/grub.cfg yet...

@pablotwo -> did the plymouth-set-default-theme command and rebooted and this worked as I wanted. Any idea what happened or changed?
Reply With Quote
  #5  
Old 8th November 2012, 08:02 PM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,126
linuxchrome
Re: Turn Off Graphical Boot

Quote:
Any idea what happened or changed?
Nope. I'm on F16 and I don't use any file system encryption. Kernel updates have never disrupted my boot up scheme, which uses the plymouth "details" theme.
Reply With Quote
  #6  
Old 8th November 2012, 11:43 PM
Dan's Avatar
Dan Offline
Administrator
 
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,309
linuxfirefox
Re: Turn Off Graphical Boot

Evenin' Paul.

Got any ideas/experience about building Plymouth themes?

I'd love to build one that uses this basic animation.

__________________
Signature Links | New Posts | Who's on the forums (right now) |

© ® ™ № ¿
Reply With Quote
  #7  
Old 9th November 2012, 12:29 AM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,126
linuxchrome
Re: Turn Off Graphical Boot

Hey Dan,

Well, I've never given a seconds thought to creating a custom plymouth theme, nore done any research on how one might go about that, with the exception of the past 3 minutes, which leads me to believe it wouldn't/shouldn't be all that difficult.

I had a look at the package contents of plymouth-theme-charge. All of it's files are in a single directory: /usr/share/plymouth/themes/charge

All the files but one are .png image files. The non-image file is a plain text file named charge.plymouth
Code:
BASH:~/-> cat /usr/share/plymouth/themes/charge/charge.plymouth 
[Plymouth Theme]
Name=Charge
Description=A theme that features the shadowy hull of a Fedora logo charge up and and finally burst into into full form.
ModuleName=two-step

[two-step]
ImageDir=/usr/share/plymouth/themes/charge
HorizontalAlignment=.5
VerticalAlignment=.5
Transition=none
TransitionDuration=0.0
BackgroundStartColor=0x202020
BackgroundEndColor=0x202020
Seems pretty simple and almost self explanatory. It seems an obvious correlation between the "[two-step]" heading and the rpm package plymouth-plugin-two-step, which installs but a single file:
Code:
BASH:~/-> rpm -ql plymouth-plugin-two-step
/usr/lib64/plymouth/two-step.so
two-step.so is a compiled binary, which is I'm sure the "engine" that runs the theme graphics display, and possibly other stuff. Hack away. I'll bet it wouldn't take too much searching though to find some documentation/tutorial on how to create a plymouth theme though.

Edit: This is worth a read. Was hoping for some official documentation at the wiki site, but ney. Just putting in "create plymouth theme" in Google search brings up a slew of hits to pursue for more clues.

Edit 2: Four part plymouth theme guide linked to from the plymouth wiki site.

Last edited by PabloTwo; 9th November 2012 at 01:11 AM.
Reply With Quote
  #8  
Old 9th November 2012, 01:18 AM
Dan's Avatar
Dan Offline
Administrator
 
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,309
linuxfirefox
Re: Turn Off Graphical Boot

*Sigh!*

Ayup. That's pretty much what I had already found. It seemed like it would be a simple matter of just changing the .png files, but that didn't work last time I tried it. Locked it up tighter than a bull's bum in fly season.

<....>
__________________
Signature Links | New Posts | Who's on the forums (right now) |

© ® ™ № ¿
Reply With Quote
  #9  
Old 9th November 2012, 01:22 AM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,126
linuxchrome
Re: Turn Off Graphical Boot

Yeah, see my last "Edit" to my post above (link to themeing guide). It ain't so easy.
Reply With Quote
  #10  
Old 9th November 2012, 03:16 AM
Dan's Avatar
Dan Offline
Administrator
 
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,309
linuxfirefox
Re: Turn Off Graphical Boot

Aha! Success! Theme changed, and fedora now zaps its way into existence on the local moon.

<....>

I suspect I fat fingered something earlier. When I tried it again, it slipped right in.


EDIT: If you want to try it, as root, download and then unpack this into /usr/share/plymouth/themes/

Then: (as root)
Code:
# plymouth-set-default-theme fedora-world --rebuild-initrd
That will take a few minutes to complete, even on a fast system. Just patiently wait until it gets done, then reboot.
__________________
Signature Links | New Posts | Who's on the forums (right now) |

© ® ™ № ¿
Reply With Quote
Reply

Tags
boot, graphical, turn

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
First boot, screen is tur off, not just freeze, all turn off. ggruss Using Fedora 0 12th September 2011 03:02 AM
Fedora 10 will not boot with solar graphical boot. dth4h Using Fedora 4 10th May 2009 06:29 AM
Re-enter graphical boot after command line boot krafty1 Using Fedora 7 27th August 2007 07:27 AM
turn off service at boot time perlsyntax Using Fedora 3 25th February 2007 12:53 PM
FC6 Graphical boot/login not graphical GreyWizzard EOL (End Of Life) Versions 12 1st November 2006 09:05 PM


Current GMT-time: 22:29 (Thursday, 23-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat