GNU/Linux Desktop Survival Guide by Graham Williams |
|||||
Intermediate Image |
The first step is perhaps to copy all of the files you wish to burn to
CD into a single directory, perhaps
/home/kayon/cdimage/. Then create the iso9660
CD image with:
$ cd /home/kayon $ mkisofs -r -o cdimage.raw cdimage |
$ sudo mount -t iso9660 -o ro,loop=/dev/loop/0 cdimage.raw /mnt $ ls /mnt $ sudo umount /mnt |
Now write the image to a CD. Here's some alternatives for a number of
systems I use:
$ cdrecord -data cdimage.raw |
If you are writing to a CD-RW be sure to blank the CD first with:
$ cdrecord -blank=fast |