Linux creating CD-ROM ISO image
If cd was mouted automatically unmout it with umount command
Create CD-ROM ISO image with dd command:
# dd if=/dev/cdrom of=/tmp/cdimg1.iso
Where,
- if=/dev/cdrom: Read from /dev/cdrom (raw format)
- of=/tmp/cdimg1.iso: write to FILE cdimg1.iso i.e. create an ISO image
Comments
Post a Comment