红联Linux门户
Linux帮助

slackware系统中制作启动盘

发布时间:2007-07-16 19:02:13来源:红联作者:source
第一种方法(使用新编译的内核制作启动盘):
#mount /dev/fd0 /mnt (this mounts it)
#cat zImage > /mnt/vmlinuz (put the new kernel in place)
#rdev -R /mnt/vmlinuz 0 (mount read-write)
#rdev /mnt/vmlinuz /dev/fd0u1440 (use that drive, or /dev/fd0h1200)
#rdev -r /mnt/vmlinuz 49152 (enable the ramdisk)
#lilo -r /mnt (reinstall lilo)
#umount /mnt (that's it! you've done! :^)

第二种更简单的方法: /sbin/makebootdisk
文章评论

共有 1 条评论

  1. jerry520 于 2009-03-27 15:14:11发表:

    学习了.