Creating an ISO:
- First make sure everything using the cd/dvd drive is closed
- Unmount the cd/dvd drive:
sudo umount /dev/dvd1
- Create the copy:
readom dev=/dev/dvd1 f=disk1.iso
- Verify the copy:
md5sum /dev/dvd1
md5sum disk1.iso
safecopy /dev/dvd1 disk1.iso
Mounting an ISO:
sudo mount -o loop -t iso9660 disk1.iso /mnt/iso
Burning an ISO:
wodim dev=/dev/cdrw -v -data disk1.iso
No comments:
Post a Comment