Archive

Posts Tagged ‘linux’

How to generate the MD5 checksum of a file

December 26th, 2008 Petros No comments

md5sum file.iso > file.iso.md5

How to create an ISO image

December 26th, 2008 Petros No comments

In order to turn a CD/DVD into an .iso one can:

sudo umount /dev/cdrom

dd if=/dev/cdrom of=file.iso bs=1024

In order to turn a folder into an .iso one can:

mkisofs -r -o file.iso /location_of_folder/

Related posts: