Return to Snippet

Revision: 22636
at January 17, 2010 16:22 by webonomic


Initial Code
#To make an ISO from your CD/DVD

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

#To make an ISO from files on hard drive, create a directory which holds the files you want.
#Then use the mkisofs command.

mkisofs -o /tmp/cd.iso /tmp/directory/

Initial URL


Initial Description


Initial Title
Create ISO files in Linux

Initial Tags
linux

Initial Language
Bash