Create ISO from Source / Modify ISO

ispirto

Renowned Member
Oct 20, 2012
37
1
73
I'm trying to edit some files inside the ISO file and then recreate it.

What I did is:

Code:
mount -o loop proxmox-ve_2.3-ad9c5c05-30.iso iso/
cp -R iso/* newiso/
mkisofs -R -iso-level 4 -z -V "PVE" -o pve-cd.iso -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table newiso/

It boots fine but it returns this error:

Code:
no cdrom found - unable to continue (type exit or CTRL+D to reboot)

What am I doing wrong?