Posts Tagged With: iso

Create ISO Image of a Folder

Tagged with: , , , , , , ,

Create an iso image of a directory


mkisofs -J -allow-leading-dots -R -V "Label CD" -iso-level 4 -o ./cd.iso data_cd
No Comments »

Create a Folder’s ISO image

Tagged with: , , , ,

How to make an ISO image from contents of a directory?


mkisofs -V label-name -r directory-name > iso-image.iso

[tags]iso,image,folder,linux,mkisofs[/tags]

No Comments »

Create CD Image

Tagged with: , , , , , , ,

These commands can be used to create an image of a CD/DVD/HDD. You can also use some GUI tool like K3B to do this. Use one any of the three commands…


dd if=/dev/cdrom of=cd_image.iso
cat /dev/cdrom >image.iso
readcd dev=device f=image.raw

[tags]cd, command, dd, dvd, image, iso,linux,raw[/tags]

No Comments »

Command to make a CD/DVD ISO Image in Linux with dd

Tagged with: , , , , , ,

This command can be used to create an image of a CD/DVD/HDD. You can also use some GUI tool like K3B to do this.

Make sure that the CD is unmounted before running this command


dd if=/dev/cdrom of=cd_image.iso

[tags]cd,dvd,image,iso,dd,linux,command[/tags]

No Comments »

Extracting DAA Image Files

Tagged with: , , , , ,

I once got a DAA file from a P2P network. Initally I was at a lose about how to extract the data. Finally I found a method that works. First get the ‘poweriso’ utilty for Linux. You can get it at the PowerISO website

Then convert the DAA file to a regular ISO file using this command…


poweriso convert daa_image.daa -o iso_image.iso -ot iso

[tags]iso,daa,image,poweriso,command,linux[/tags]

1 Comment »

Mount ISO Images

Tagged with: , , , ,

Mounting ISO Images in Linux


mount -t iso9660 -o loop <Image_File> <Mount_Point>

How to Mount ISO/MDF Images in Linux

No Comments »