Wednesday, 7 December 2011

How to Manage Write CD Images in Linux?

Create ISO image of cd data

# dd if=/dev/cdrom of=/home/abc/image.iso

mount this ISO image file in local

# mount -o loop -t iso9660 /home/abc/image.iso /xyz

Burning an .iso file works with the following command:
# cdrecord -v dev=0,0,0 /home/abc/image.iso

No comments:

Post a Comment