Scripts posted recently tagged to iso in Kelpi

1- 3 of 3.

Create i386 bootable iso

to iso bootable shell by jonbaine

#Replace <> marked args. with the correct value.
 mkisofs -pad -l -J -v -V "<Name>" -no-emul-boot -boot-load-size 4 -boot-info-table -b < binary -> isolinux boot/isolinux/isolinux.bin> -c <catalog -> isolinux boot/isolinux/boot.cat> -hide-rr-moved -o <DVD.iso -- output iso> -r </tmp/DVD which dir to take>

How to create ISO images from CD/DVD

to bash iso cd dvd scsi by garaolaza

# You need to unmount if the drives are mounted
# More in http://ubuntuforums.org/archive/index.php/t-6509.html

dd if=/dev/dvd of=dvd.iso # for dvd
dd if=/dev/cdrom of=cd.iso # for cdrom

Hello World in ISO C++

to c++ iso hello-world by nando.quintana

// Hello World in ISO C++

#include <iostream>
#include <ostream>
hits counter