bootsplash for slackware kernel-2.6.12!

http://tech.ddvip.com   2006年08月11日    社区交流

本文详细介绍bootsplash for slackware kernel-2.6.12!

#lilo

  5.重启,enjoy!

  NOTICE:

  1.开机后发现没有开启硬盘dma,因此修改/etc/rc.d/rc.local,添加:

# open harddisk dma
# for testing to use the following command:
# #hdparm -Tt /dev/hda
# ATA33 : -X66
# ATA66 : -X68
# ATA100: -X69
# ATA133: -X70
/usr/sbin/hdparm -d1 -X70 -c3 -m16 /dev/hda

  2.多个控制台ttyN多个背景

  by Debentoo Gao@Linuxsir.org

  OK, 如果你想在 tty1 下使用背景时就可以运行

  代码:

  # splash -s -u 1 /usr/share/splash/bootsplash.cfg

  -u 后面就是控制台号码,如果你想在第 100 个控制台下使用背景当然也可以用 -u 100 icon_razz.gif

  ft... 这样每次开机都要一个一个设置太累了,让它在每次启动后自动在每个控制台上加上背景 icon_wink.gif

  代码:

  # cd /usr/share/splash

  # for i in tty2 tty3 tty4 tty5 tty6; do mkdir $i ; cp boot* $i ; done

  # echo '/bin/splash -s -u 1 /usr/share/splash/tty2/bootsplash.cfg' >> /etc/conf.d/local.start

  # echo '/bin/splash -s -u 2 /usr/share/splash/tty3/bootsplash.cfg' >> /etc/conf.d/local.start

  # echo '/bin/splash -s -u 3 /usr/share/splash/tty4/bootsplash.cfg' >> /etc/conf.d/local.start

  # echo '/bin/splash -s -u 4 /usr/share/splash/tty5/bootsplash.cfg' >> /etc/conf.d/local.start

  # echo '/bin/splash -s -u 5 /usr/share/splash/tty6/bootsplash.cfg' >> /etc/conf.d/local.start

作者:zhy2111314    责编:豆豆技术应用

正在加载评论...