第一种方法(使用新编译的内核制作启动盘):
#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
jerry520 于 2009-03-27 15:14:11发表:
学习了.