Take the 2-minute tour ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.

How do I add a bootloader to a Linux ISO?

When I isoinfo -d -i ... I do not see the bootloader on one of the ISO's that I have; but on another ISO there is a bootloader.

share|improve this question

1 Answer 1

Ok, I found out how to make a bootable ISO image:

# mkisofs -r -b isolinux/isolinux.bin -c isolinux/boot.cat -o ../c.iso -no-emul-boot -boot-load-size 4 -boot-info-table .

The boot.cat is required and so is the isolinux.bin as this indicates what is to be booted.

I also couldn't do this without root permissions.

share|improve this answer
    
Where do I get isolinux.bin and boot.cat? –  Bruce Ediger Mar 25 '14 at 22:08
    
It's vendor specific en.wikipedia.org/wiki/… –  josten Mar 26 '14 at 1:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.