Announcement

Collapse
No announcement yet.

Boot splash image

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Boot splash image

    How do I change the boot image for the kubuntu loading screen?

    Also, how would I disable this screen so that the standard text displays?

    #2
    Re: Boot splash image

    1. http://doc.gwos.org/index.php/Change_Usplash

    2.
    Code:
    sudo nano -B /boot/grub/menu.lst
    Delete the splash off the kernel line. For example...
    Before:
    Code:
    title      Ubuntu, kernel 2.6.15-26-k7
    root      (hd0,6)
    kernel     /boot/vmlinuz-2.6.15-26-k7 root=/dev/hda7 ro quiet splash
    initrd     /boot/initrd.img-2.6.15-26-k7
    savedefault
    boot
    After:
    Code:
    title      Ubuntu, kernel 2.6.15-26-k7
    root      (hd0,6)
    kernel     /boot/vmlinuz-2.6.15-26-k7 root=/dev/hda7 ro quiet
    initrd     /boot/initrd.img-2.6.15-26-k7
    savedefault
    boot
    Linux is ready for the desktop--but whose desktop?<br />How to install software in Kubuntu

    Comment

    Working...
    X