Thursday 31 October 2013

Get back Boot splash after install of Nvidia Driver.

My boot was a text displaying "Linux Mint 15" with 4 dot's on bottom and Nvidia logo after. I try install custom boot splash's but after reboot the same was displaying. The solution came after many attempts. My graphics Nvidia  Geforce 8400M GT, driver 310.44 linux 64 bit. This as taken from askubuntu.com last post...

First install hwinfo by running the following command:
sudo apt-get install v86d hwinfo
After the installation run the following command and note down the highest resolution:
sudo hwinfo --framebuffer
For me this was Mode 0x0361: 1280x800 (+5120), 24 bits, next edit the following file:
gksu gedit /etc/default/grub
This will open the GRUB config file, we now look for GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" and change it with the following, change your resolution with mine and also add the color depth (for me 24 could be 16 or 32).
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option=1280x800-24,mtrr=3,scroll=ywrap"
Then find the following line (uncomment if needed) and change your resolution again, note that you don't include the color depth:
GRUB_GFXMODE=1280x800
Save and exit, next edit the following file:
gksu gedit /etc/initramfs-tools/modules
Scroll to the end of the file and add the following line, again add your resolution and the colordepth like you did before:
uvesafb mode_option=1280x800-24 mtrr=3 scroll=ywrap
Then in the terminal type the following commands and then reboot:
echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash
sudo update-grub
sudo update-initramfs -u
For me this fixed the problem, I tried all the other suggestions and scripts, none of them worked but this does, good luck!
To remove the Nvidia splash logo add "NoLogo" to xorg.conf, by
sudo gedit /etc/X11/xorg.conf

Section "Device"
     Option "NoLogo" "True"
Then you can install super-boot-manager to managing the boot splash.
My boot splash

Enriki-theme

I hope this help.

No comments:

Post a Comment