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 23rd September 2010, 08:47 AM
bwilliam Offline
Registered User
 
Join Date: Nov 2005
Location: Dallas
Age: 62
Posts: 13
linuxfedorafirefox
Plymouth Graphical Boot disappeared after loading Nvidia driver.

I have successfully installed the Nvidia driver on my FC13 system that is using an Nvidia NV44 (Ge 6200) card. It seems to be working as I see the nvidia driver when I do a lsmod | grep nvidia and the glxgears program works as well as the nvidia-settings program.

Basically, I did the following:

Code:
 yum install kmod-nvidia-PAE

 new-kernel-pkg --mkinitrd --dracut --update $(rpm -q --queryformat="%{version}-%{release}.%{arch}\n" kernel | tail -n 1)

 Reboot
However, the nice Plymouth Graphical Boot has disappeared (or at least changed) from the nice high resolution screen with the "Tear drop" that slowly fills up in the middle of the screen and then becomes the Fedora "F" logo. Instead, I get a low resolution display with a lame marching rectangle across the bottom of the screen.

I'm thinking that the new-kernel-pkg command blew the Plymouth stuff out of the initrd image. I've tried using
Code:
   plymouth-set-default-theme -R
to put back the Plymouth graphical boot into the initrd image but that doesn't seem to help.

I also tried rerunning the new-kernel-pkg command with the --add-plymouth-initrd switch and that doesn't seem to work either.

The documentation on Plymouth at http://docs.fedoraproject.org/en-US/...-Plymouth.html implies that the graphic driver has to support modeset for the Plymouth Graphical Boot to work. Maybe that's the problem and the Nvidia PAE driver doesn't yet support modeset. (Does any know if that's the case?)

I know this is a minor cosmetic thing but I'd like to figure out how to get the nice Plymouth graphical bootup to work again.

Thanks in advance.
Reply With Quote
  #2  
Old 23rd September 2010, 02:10 PM
oxala Offline
Registered User
 
Join Date: Jul 2010
Posts: 258
linuxfedorafirefox
Re: Plymouth Graphical Boot disappeared after loading Nvidia driver.

Hello,

You will want to add "vga=<MODE>" to your boot options. Since the proprietary driver does not use kernel modesetting, you must manually specify a mode that is high enough in resolution for plymouth to run.

Example:

Code:
kernel /vmlinuz-2.6.34.7-56.fc13.i686.PAE root=/dev/mapper/dolphin-root2 ro rd_LVM_LV=dolphin/root2 rd_MD_UUID=224aa24a:8d2b2d73:4fa6bae4:438fc5b1 rd_LVM_LV=dolphin/swap rd_NO_LUKS rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet nouveau.modeset=0 rdblacklist=nouveau vga=0x369
Enjoy!


oxala
Reply With Quote
  #3  
Old 23rd September 2010, 05:01 PM
bwilliam Offline
Registered User
 
Join Date: Nov 2005
Location: Dallas
Age: 62
Posts: 13
linuxfedorafirefox
Re: Plymouth Graphical Boot disappeared after loading Nvidia driver.

It seems that the system doesn't like "vga=0x369". (I'm not sure what mode that is.) Used "vga=840" (i.e. hex 0x348 which is mode 1400x1050x16) and that does the trick.

Now just out of curiosity, how would I back out the nvidia driver if I had to for some reason? It appears you can't just do a yum remove *nvidia*, take out the rdblacklist=nouveau command from grub.conf and build a new initrd image with new-kernel-pkg. I actually tried that and you still see the nvidia driver when you do a lsmod.

Thanks for the help.
Reply With Quote
  #4  
Old 23rd September 2010, 05:21 PM
oxala Offline
Registered User
 
Join Date: Jul 2010
Posts: 258
linuxfedorafirefox
Re: Plymouth Graphical Boot disappeared after loading Nvidia driver.

Hello,

I have NOT tried this yet, but I imagine that you could dual boot between nouveau and nvidia drivers by doing the opposite of the current boot options. Blacklist nvidia and specicify nouveau, but with modeset enabled.

In a running system, removing the package may not unload the module from memory. To this, you would need to use "rmmod <MODULE>".

Have fun!


oxala

PS "vga=0x369" was intended as an example, I should have used a more common mode, I'm glad you found a working mode!

Last edited by oxala; 23rd September 2010 at 05:24 PM.
Reply With Quote
  #5  
Old 23rd September 2010, 05:46 PM
bwilliam Offline
Registered User
 
Join Date: Nov 2005
Location: Dallas
Age: 62
Posts: 13
linuxfedorafirefox
Re: Plymouth Graphical Boot disappeared after loading Nvidia driver.

Quote:
Originally Posted by oxala View Post
I have NOT tried this yet, but I imagine that you could dual boot between nouveau and nvidia drivers by doing the opposite of the current boot options. Blacklist nvidia and specicify nouveau, but with modeset enabled.
I assume I would need another entry in grub.conf that had rdblacklist=nvidia but I'm not sure how to "specify" nouveau in grub.conf entry.

Beau
Reply With Quote
  #6  
Old 23rd September 2010, 07:40 PM
oxala Offline
Registered User
 
Join Date: Jul 2010
Posts: 258
linuxfedorafirefox
Re: Plymouth Graphical Boot disappeared after loading Nvidia driver.

Hello,

This is my current grub entry:

Code:
title Fedora (2.6.34.7-56.fc13.i686.PAE)
    root (hd1,0)
    kernel /vmlinuz-2.6.34.7-56.fc13.i686.PAE root=/dev/mapper/dolphin-root2 ro rd_LVM_LV=dolphin/root2 rd_MD_UUID=224aa24a:8d2b2d73:4fa6bae4:438fc5b1 rd_LVM_LV=dolphin/swap rd_NO_LUKS rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet nouveau.modeset=0 rdblacklist=nouveau vga=0x369
    initrd /initramfs-2.6.34.7-56.fc13.i686.PAE.img
Enjoy!


oxala
Reply With Quote
  #7  
Old 24th September 2010, 12:03 PM
my_linux Offline
Registered User
 
Join Date: Sep 2007
Location: London, England
Posts: 107
windows_7ie
Re: Plymouth Graphical Boot disappeared after loading Nvidia driver.

You can use vga=ask to verify what modes are supported with the Nvidia driver. Once confirmed you can then add a compatible mode to grub.conf and Plymouth should work.

If you are using RPMFusion's Nvidia drivers see; http://rpmfusion.org/Howto/nVidia
__________________
--
Linux the root to no GPFs
Reply With Quote
Reply

Tags
boot, disappeared, driver, graphical, loading, nvidia, plymouth

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
Under nvidia drivers, no more Plymouth graphical boot philrigby Using Fedora 6 9th January 2010 12:06 AM
Plymouth graphical boot on F12 (not working for me) planetf1 Fedora 12 Alpha, Beta & Release Candidates 2 25th October 2009 09:34 AM
How To Enable Graphical Boot with Plymouth in Fedora 10 SendDerek Guides & Solutions (No Questions) 21 1st June 2009 07:16 AM
How To Enable Graphical Boot with Plymouth noiz354 Using Fedora 2 13th March 2009 11:24 AM
nvidia driver disabled Red Hat Graphical Boot laiseng Using Fedora 6 29th July 2005 09:07 PM


Current GMT-time: 15:22 (Wednesday, 22-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