Customize Redhat ISO
I need to modify Redhat linux bootable ISO. For which I am mounting the ISO in some dir then I am copying the content of ISO into another dir. Then I am modifying the some RPMs. After that I am trying to rebuild the ISO using below commands:
chmod u+w $content_path/isolinux/*
cd $content_path/
mkisofs -r -T -J -V '$label' -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -v -o $iso ./
But it is resulting in unexpected Output. I think linking is not proper with ISO content. Please help.
|