Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

burning img images

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
froggle

burning img images

#1 Post by froggle »

Hi

Does someone know how to burn .img images (created with CloneCd) on Linux?


Thanks

User avatar
dawgie
Posts: 430
Joined: 2004-06-16 21:30
Location: New Hampshire USA

Re: burning img images

#2 Post by dawgie »

froggle wrote:Hi

Does someone know how to burn .img images (created with CloneCd) on Linux?
Thanks
I'm not familar with an '.img' file. You can test if it a regular .iso file by trying to mount it as a loopback device as root:

If you do not already have a temporary mount directory, create one:

# mkdir /mnt/temp

Mount the iso file in the /mnt/temp directory:
# mount -t iso9660 -o ro,loop=/dev/loop0 TheNameOfYourFile.img /mnt/temp
The check th /mnt/temp directory to see if this works.
If this works, then the '.img' file is a regular cdrom '.iso' file.
An '.iso' file is a cd image.
The easiest way to burn an '.iso' file is with cdrecord.
I wrote a how-to here:
http://www.debianplaza.net/forums/viewtopic.php?t=161

Bob

froggle

#3 Post by froggle »

thx

Post Reply