Gargi
28.12.2007, 13:41
Okay, dann wollen wir mal.
Zuerst muss der Kernel gepatcht werden. Dazu laden wir den Bootsplashpatch von Welcome to the graphical world of Linux - Bootsplash (http://www.bootsplash.org) für den aktuellen Kernel herunter.
cd /usr/src
wget ftp://ftp.bootsplash.org/pub/bootsplash/kernel/bootsplash-3.1.6-2.6.18.diff
Im Buildverzeichnis des Kernels müssen wir dann den Patchvorgang starten:
patch -p1 < /usr/src/bootsplash-3.1.6-2.6.18.diff
Ist der Kernel erstmal gepatcht rufen wir das Konfigurationsprogramm im Buildverzeichnis auf:
make menuconfig
Dann gehen wir auf "Device Drivers" -> "Graphics Support" -> "Bootsplash Configuration" und aktivieren "Bootup splash screen" . Danach wird der Kernel neu Kompiliert (Siehe Gargis Kernel Tutorial).
Jetzt können wir folgende Pakete installieren:
apt-get install bootsplash
apt-get install bootsplash-theme-debian
Damit der Statusbalken auch animiert dargestellt wird, muss noch eine Datei gepatcht werden. Benennt dazu erstmal die rc um:
mv /etc/init.d/rc /etc/init.d/rc.old
Danach muss die gepatchte Datei gezogen werden:
cd /etc/init.d
wget ftp://ftp.bootsplash.org/pub/bootsplash/init-scripts/rc-debian-etch.txt
mv rc-debian-etch.txt rc
chmod +x rc
Danach muss noch die /boot/grub/menu.lst editiert werden. Aus der aktuellen Zeile Eueres Kernelaufrufes
kernel /vmlinuz-2.6.18.3.gargi01 root=/dev/mapper/system-DEBIAN1 ro
macht Ihr folgende
kernel /vmlinuz-2.6.18.3.gargi01 vga=791 splash=silent root=/dev/mapper/system-DEBIAN1 ro
indem Ihr vga=791 splash=silent ergänzt.
Wenn Ihr allerdings nur den grafischen Rahmen um die Textmeldungen des Kernels haben wollt (wie ich das selbst gerne mach) lasst einfach das splash=silent weg .
Weitere Infos, Tipps und Themes findet Ihr unter folgende Links:
Welcome to the graphical world of Linux - Bootsplash (http://www.bootsplash.org)
bootsplash.de - bootsplash kernel patches, userland tools and themes (http://www.bootsplash.de)
cu
Gargi
Zuerst muss der Kernel gepatcht werden. Dazu laden wir den Bootsplashpatch von Welcome to the graphical world of Linux - Bootsplash (http://www.bootsplash.org) für den aktuellen Kernel herunter.
cd /usr/src
wget ftp://ftp.bootsplash.org/pub/bootsplash/kernel/bootsplash-3.1.6-2.6.18.diff
Im Buildverzeichnis des Kernels müssen wir dann den Patchvorgang starten:
patch -p1 < /usr/src/bootsplash-3.1.6-2.6.18.diff
Ist der Kernel erstmal gepatcht rufen wir das Konfigurationsprogramm im Buildverzeichnis auf:
make menuconfig
Dann gehen wir auf "Device Drivers" -> "Graphics Support" -> "Bootsplash Configuration" und aktivieren "Bootup splash screen" . Danach wird der Kernel neu Kompiliert (Siehe Gargis Kernel Tutorial).
Jetzt können wir folgende Pakete installieren:
apt-get install bootsplash
apt-get install bootsplash-theme-debian
Damit der Statusbalken auch animiert dargestellt wird, muss noch eine Datei gepatcht werden. Benennt dazu erstmal die rc um:
mv /etc/init.d/rc /etc/init.d/rc.old
Danach muss die gepatchte Datei gezogen werden:
cd /etc/init.d
wget ftp://ftp.bootsplash.org/pub/bootsplash/init-scripts/rc-debian-etch.txt
mv rc-debian-etch.txt rc
chmod +x rc
Danach muss noch die /boot/grub/menu.lst editiert werden. Aus der aktuellen Zeile Eueres Kernelaufrufes
kernel /vmlinuz-2.6.18.3.gargi01 root=/dev/mapper/system-DEBIAN1 ro
macht Ihr folgende
kernel /vmlinuz-2.6.18.3.gargi01 vga=791 splash=silent root=/dev/mapper/system-DEBIAN1 ro
indem Ihr vga=791 splash=silent ergänzt.
Wenn Ihr allerdings nur den grafischen Rahmen um die Textmeldungen des Kernels haben wollt (wie ich das selbst gerne mach) lasst einfach das splash=silent weg .
Weitere Infos, Tipps und Themes findet Ihr unter folgende Links:
Welcome to the graphical world of Linux - Bootsplash (http://www.bootsplash.org)
bootsplash.de - bootsplash kernel patches, userland tools and themes (http://www.bootsplash.de)
cu
Gargi