wrayal Posted August 10, 2007 Posted August 10, 2007 (edited) I was looking for a way to directly insert a boot sector into an image. Every piece of software that I've come across so far (magic ISO, ultra ISO...) also re-saves/re-structures the remaining content of the disc. Is it possible to simply directly insert a boot image? I can happily use dd if required.Thanks!!Wrayal Edited August 10, 2007 by wrayal
cdob Posted August 10, 2007 Posted August 10, 2007 Is it possible to simply directly insert a boot image? I can happily use dd if required.I don't understand clearly.Do you like to insert new data?A old sector does exist and you like to overwrite this sector? Use a hex editor or dd.I'm using dd.$ dd count=1 bs=2048 skip=625 if=C:/temp/image.iso of=bootimage.img$ dd count=1 bs=2048 seek=625 conv=notrunc if=bootimage.img of=C:/temp/image.iso
wrayal Posted August 10, 2007 Author Posted August 10, 2007 Sorry if I wasn't clear, but that's perfect thanks =)Wrayal
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now