rss
twitter
  •  

Create ISO Images from CD/DVD and Folder Files

| Posted in ubuntu |

2

With Ubuntu, you can create ISO disk Images directly from CD/DVD and folder files. Then create MD5 Checksum files.
Assumed that the CD/DVD device is located at /dev/cdrom/

Turn a CD/DVD into an .iso
$ sudo umount /dev/cdrom
$ dd if=/dev/cdrom of=file.iso bs=1024

Turn a folder into an .iso
$ mkisofs -r -o file.iso /location_of_folder/

Generate an MD5 checksum file

$ md5sum file.iso > file.iso.md5

Check MD5 checksum of file
$ md5sum -c file.iso.md5

Not only for Ubuntu, you can also use this command to create ISO images and MD5 checksum in any Linux Distro.

VN:F [1.9.13_1145]
Rating: 9.0/10 (2 votes cast)
VN:F [1.9.13_1145]
Rating: +1 (from 3 votes)
Create ISO Images from CD/DVD and Folder Files, 9.0 out of 10 based on 2 ratings

Comments (2)

thanks for the info d00d.

VA:F [1.9.13_1145]
Rating: 0.0/5 (0 votes cast)
VA:F [1.9.13_1145]
Rating: 0 (from 0 votes)

I will try it…..thanks….
I love Linux……

VA:F [1.9.13_1145]
Rating: 4.0/5 (1 vote cast)
VA:F [1.9.13_1145]
Rating: 0 (from 0 votes)

Post a comment