赞一个,顺便把作者的东西转过来
PS:版权属于作者,另外,作者把代码的每一行加了一个行号,大家自己删除吧
有一些发行版带有 BootSplash,也就是启动画面,有的是进度条的,有的是漂亮的背景加启动文字的。总之是很漂亮了。可惜 debian 默认安装完以后是不带这个东西的。不过我们可以自己安装这个东西,从网上看了一些这方面的介绍,大部分是都是介绍 Gentoo 和 RedHat 的,安装起来都很麻烦,debian 安装这个东西比起那些发行版来说,可以算是简单多了,下面就来看看怎样安装 BootSplash 吧。
首先在你的 apt 源里加上这两行:
[code:1] 1. deb http://debian.bootsplash.de unstable main
2. deb-src http://debian.bootsplash.de unstable main[/code:1]
然后用 apt-get update 更新一下软件列表。
接下来,先安装 bootsplash 的内核补丁
[code:1] 1. apt-get install kernel-patch-bootsplash[/code:1]
然后重新编译内核:
[code:1] 1. apt-get install debhelper modutils kernel-package libncurses5-dev
2. apt-get install linux-source-2.6.12
3. apt-get install fakeroot
4. vi /etc/kernel-pkg.conf # 输入我的名字和邮件地址
5. cd /usr/src # 创建目录
6. tar -xjvf linux-source-2.6.12.tar.bz2
7. cd linux-source-2.6.12 # 如果这是你的内核源码
8. ../kernel-patches/all/apply/bootsplash # 给内核打补丁
9. cp /boot/config-2.6.12-686 .config # 将当前配置设定为默认配置
10. make menuconfig # 按自己的喜好来定制
11. make-kpkg clean # 必须执行这步
12. fakeroot make-kpkg --append_to_version -686 --initrd --revision=2.6.12-10 --stem linux kernel_image modules_image
13. cd ..
14. dpkg -i *.deb[/code:1]
注意:在上面定制内核选项时,要选择下列项目:
[code:1]
1. Code maturity level options --->
2. [*] Prompt for development and/or incomplete code/drivers
3. Processor type and features --->
4. [*] MTRR (Memory Type Range Register) support
5. Device Drivers --->
6. Block devices --->
7. <*> Loopback device support
8. <*> RAM disk support
9. (4096) Default RAM disk size
10. [*] Initial RAM disk (initrd) support
11. Graphics support --->
12. [*] Support for frame buffer devices
13. [*] VESA VGA graphics support
14. Console display driver support --->
15. [*] Video mode selection support
16. <*> Framebuffer Console support
17. Bootsplash configuration --->
18. [*] Bootup splash screen
[/code:1]
新内核编译并安装以后,就已经支持 BootSplash,下面就可以安装 BootSplash 的包和主题:
[code:1] 1. apt-get install bootsplash bootsplash-theme-debian sysv-rc-bootsplash[/code:1]
注意:安装 sysv-rc-bootsplash 包时,要确定你的 sysv-rc 的包 2.86.ds1-1(stable) 版本的,如果是 testing 版本安装可能会失败。
配置 bootsplash 时,他会让你选择 initrd 的位置,你就选择你刚刚编译并安装好的那个 /boot/initrd.img-2.6.12-686 就可以了。
然后是配置 grub:
[code:1] 1. title Debian GNU/Linux, kernel 2.6.12-686 (silent)
2. root (hd0,0)
3. kernel /boot/vmlinuz-2.6.12-686 root=/dev/hda1 ro vga=791 splash=silent
4. initrd /boot/initrd.img-2.6.12-686
5. savedefault
6. boot
7.
8. title Debian GNU/Linux, kernel 2.6.12-686 (bootsplash)
9. root (hd0,0)
10. kernel /boot/vmlinuz-2.6.12-686 root=/dev/hda1 ro vga=791
11. initrd /boot/initrd.img-2.6.12-686
12. savedefault
13. boot
14.
15. title Debian GNU/Linux, kernel 2.6.12-686 (recovery mode)
16. root (hd0,0)
17. kernel /boot/vmlinuz-2.6.12-686 root=/dev/hda1 ro single
18. initrd /boot/initrd.img-2.6.12-686.orig
19. savedefault
20. boot[/code:1]
好了,现在选择第一项 Debian GNU/Linux, kernel 2.6.12-686 (silent) ,将进入带进度条动画的启动画面,选第二项 Debian GNU/Linux, kernel 2.6.12-686 (bootsplash),将进入是漂亮的背景加启动文字的启动画面了。 |