问题来源:
我找不到原始的iso镜像了,只在一台机器上发现拷贝的文件,所以我需要利用这些文件制作成iso来安装。
最初的参考资料:
如果参考 http://linuxlookup.com/howto/create_iso_image_file_linux中的mkisofs方法
在制作ISO的时候会遇到问题,无法正常的boot
1 | Steps to follow |
- 问题:
关于从directory制作iso会遇到几个问题,
- “mkisofs: Uh oh, I cant find the boot catalog directory “
需要确保,isolinux/isolinux.bin 和 isolinux/boot.cat 相对应的iso目录正确
参考:
http://www.linuxquestions.org/questions/linux-software-2/mkisofs-returns-error-mkisofs-uh-oh-i-cant-find-the-boot-catalog-directory-844905/
- boot image ‘./isolinux/isolinux.bin’ has not an allowable size.
这个是因为默认的是floppy,解决方法
你需要加入: -hard-disk-boot 或者 -no-emul-boot.
参考:
http://www.linuxquestions.org/questions/red-hat-31/mkisofs-error-boot-image-%27-isolinux-isolinux-bin%27-has-not-an-allowable-size-358439/
- 解决方法:
我的例子(redhat x86_64 6.4 ISO):
1 | sudo mkisofs -o ~/images/rhels64.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-info-table -l -r -J -v -allow-lowercase ~/images/rhels6.4/x86_64/ |
说明:关于link中给出的 -boot-load-size 4,这个我的没有指出也可以,是因为,
1 | -boot-load-size load_sectors Specifies the number of "virtual" (512-byte) sectors to load in no-emulation mode. |