ISO modification
Modifying a ISO file using linux
Steps
- Create a directory to mount the ISO file:
mkdir /mnt/iso
- Mount the ISO file:
sudo mount -o loop file.iso /mnt/iso
-
Modify the contents of the mounted ISO file as needed.
-
Create a new ISO file with the modified contents:
genisoimage -o newfile.iso -r -J /mnt/iso
- Unmount the ISO file:
sudo umount /mnt/iso