|
How to remaster the iso file |
|
|
|
|
Friday, 22 May 2009 19:01 |
For what ever reason you have, you may want to alter the iso file used to make the Parted Magic LiveCD. This is a simple explanation of how to alter the Parted Magic iso file from a Linux system.
mkdir iso_mount new_iso mount -o loop pmagic-4.*.iso iso_mount cp -a iso_mount/* new_iso umount iso_mount
You can now copy your files directly to the new_iso directory. If you would like to add programs, put the in new_iso/pmagic/pmodules.
Use this command to recreat the iso image using the syslinux boot loader:
mkisofs -R -l -D -b boot/isolinux/isolinux.bin -o pmagic-custom.iso \ -c boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 \ -boot-info-table -V "Parted Magic" new_iso
Use this command to recreate the iso image using the grub4dos boot loader:
mkisofs -R -b grldr -no-emul-boot -boot-load-size 4 -o pmagic-custom.iso new_iso
There are many programs for altering and remastering iso files. Parted Magic includes a very nice one called isomaster if you do not want to use the command line.
|
|
Last Updated on Friday, 22 May 2009 19:30 |