Code Sample |
root@ttyp0[dsl]# mkisofs -no-pad -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b mnt/test/newcd/boot/isolinux/isolinux.bin -c mnt/test/newcd/boot/isolinux/boot.cat -hide-rr-moved -o mydsl /mnt/test mkisofs: Uh oh, I cant find the boot catalog directory 'mnt/test/newcd/boot/isolinux'! root@ttyp0[dsl]# mkisofs -no-pad -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b /mnt/test/newcd/boot/isolinux/isolinux.bin -c /mnt/test/newcd/boot/isolinux/boot.cat -hide-rr-moved -o mydsl.iso /mnt/test call to search_tree_file with an absolute path, stripping initial path separator. Hope this was intended... mkisofs: Uh oh, I cant find the boot catalog directory '/mnt/test/newcd/boot/isolinux'! |
Code Sample |
root@ttyp0[dsl]# mount /mnt/hda1/loopfile/disk.img /mnt/test -o loop root@ttyp0[dsl]# mkisofs -no-pad -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o mnt/hda1/dsl.iso mnt/test/newcd mkisofs: No such file or directory. Invalid node - mnt/test/newcd root@ttyp0[dsl]# mkisofs -no-pad -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o mnt/hda1/dsl.iso /mnt/test/newcd mkisofs: No such file or directory. Unable to open disc image file |