Deprecated: Assigning the return value of new by reference is deprecated in /home/twinaxis/www/pmwiki/cookbook/sourceblock.php on line 140
TwinAxis | Linux / CDBackupMethods
Root Page :: Recent Changes :: Search

Windows Programming

Linux Info

Cookbook

Random

CDBackupMethods

How to make an ISO on Linux.

Method: DD

$ dd if=/dev/cdrom of=image.iso

This will read the raw data from the drive directly to a file.

Method: CDRDAO

$ cdrdao read-cd --read-raw --datafile image.bin --device ATA:1,1,0 \
        --driver generic-mmc-raw image.toc
$ toc2cue image.toc image.cue
$ bchunk image.bin image.cue image

Assuming you want an ISO file, first we generate a BIN+TOC, then convert the TOC to a CUE file (BIN+CUE). From here, we can generate an ISO file.

2008-04-08 20:40:59 :: Source :: History :: Backlinks :: Print