LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   useing mkisofs to make iso from cd. (https://www.linuxquestions.org/questions/linux-software-2/useing-mkisofs-to-make-iso-from-cd-184308/)

sethgeekx86 05-21-2004 07:46 PM

useing mkisofs to make iso from cd.
 
how do i use mkisofs a make an iso from a data disk.

homey 05-21-2004 09:25 PM

If you have the cdrom in postition /mnt/cdrom, you need to mount it first.
mount /mnt/cdrom
change to that directory
cd /mnt/cdrom
Now you can make the iso. In this case, just a data iso and not a bootable one....
mkisofs -R -J -o /home/mycd.iso .
Note: In this case, the period ( . ) is important.
umount /mnt/cdrom

If you want to make a bootable cdrom from the iso, you will need a boot image in there.

mcleodnine 05-22-2004 12:54 AM

dd if=/dev/cdrom of=yourfilename.iso


All times are GMT -5. The time now is 12:09 AM.