disk image software



disk image

disk image

Optical disc authoring
  • Optical disc
  • Optical disc image
  • Recorder hardware
  • Authoring software
  • Recording technologies
    • Recording modes
    • Packet writing
Optical media types
  • Laserdisc
  • Compact Disc/CD-ROM: CD-R, CD-RW
  • Digital Versatile Disc: DVD-R, DVD+R, DVD+R DL,
    DVD-RW, DVD+RW, DVD-RAM
  • Blu-ray Disc: BD-R, BD-RE
  • HD DVD: HD DVD-R
Standards
  • Rainbow Books
  • File systems
    • ISO 9660
      • Joliet
      • Rock Ridge
        • Amiga extensions to Rock Ridge
      • El Torito
      • Apple ISO9660 Extensions
    • Universal Disk Format
      • Mount Rainier

A disk image is a computer file containing the complete contents and structure of a data storage medium or device. The term has been generalized to cover any such file, whether taken from an actual physical storage device or not.

One of the most popular and commonly encountered types of disk images is a CD/DVD image. In simple terms, a CD/DVD-image is an exact digital replica of a CD/DVD, whereby all of the data is stored in one file to completely preserve the data structure and integrity of the CD/DVD. CD/DVD images are essential for retaining copy-protection data and multi-track data/audio.

Images of CD-ROMs are usually .ISO files, referring to the ISO 9660 file system commonly used on such disks. The .ISO format is the most common format for software disk images, but does not support multi-track data or audio CDs, a disadvantage.

Macintosh computers are able to create and mount disk images in the .DMG format.

Other common disk image formats include: .BIN/.CUE, .IMG, .NRG[1], .MDF/.MDS[2], .DAA used by PowerISO[3], and .CCD/.IMG/.SUB[4].

Contents

  • 1 Usage
    • 1.1 Data Storage
    • 1.2 Software Distribution
    • 1.3 Virtual Disks
  • 2 Formats
    • 2.1 .ISO
    • 2.2 .BIN/.CUE
    • 2.3 .IMG
    • 2.4 Apple Disk Image
  • 3 See also
  • 4 Reference

Usage

Creating a CD/DVD-image is actually very easy and not as complicated as one might think, all that is required is an appropriate CD/DVD-imaging program and enough disk space to save the image onto. Some common disk-imaging programs are Alcohol 120%, CDRWin, CloneCD/DVD and Nero Burning ROM for Windows, Disk Utility and Roxio Toast for Macintosh, K3B and x-CD roast for Linux.

For audio CDs, known as multi-track CDs (data or audio on the first track, data or audio on any subsequent tracks), a CD image is required, as CD audio cannot be copied directly via the standard Windows, Macintosh or Linux interfaces. This is because CD-audio is physically stored in the dips and pits on the surface of the disc, much like the grooves on a vinyl record.

Data Storage

An ordinary backup program only backs up the files it can access; boot information and files locked by the operating system (such as those in use at the time of the backup) may not be saved. A full disk image contains all these, faithfully replicating all data. For this reason, it is commonly used for backing up disks with operating systems, or bootable CDs and DVDs.

As most operating systems allow disk images to be mounted as if they were physical discs, formats such as .ISO may be used as a universal archive format.

Software Distribution

A common use of disk images is for distribution of large programs or software systems over the internet. Installation disks and LiveCDs for operating systems such as Linux or BSD systems are typically available as .ISO images. Installation floppy disks or CD-ROMs are stored as disk image files, transferred over the internet, and burned or copied onto actual disks by end users.

Disk images, most often .ISO or .BIN/.CUE files, are also popular for peer-to-peer file sharing of software.

Virtual Disks

Another common use is to provide virtual disk drive space to be used by emulators (e.g. QEMU) and virtual machines. This can prevent the CD from getting damaged. It can also reduce bulk when one wishes to carry the contents of the CD along with oneself: one can store disk images to a relatively lightweight and bootable storage device which has a higher storage capacity than that of a CD (i.e. a USB keydrive).

Emulation also provides a performance boost, as hard disks transfer data at exponentially higher rates than optical disk drives. Console emulators, such as ePSXe, and many other emulators that read from CD/DVD, are able to read ISO/BIN (and other similar formats) instead of running directly from the CD drive, obtaining better performance.

As most operating systems allow these images to be mounted as if they were physical discs, formats such as .ISO may be used as a universal archive format.

Formats

An image is saved as a file, which for a full CD or system disk may be quite large (600 MB to several GB). This file can be saved onto a hard drive, CD, DVD or other media, for later use.

Images of CD-ROMs most often carry the filename extension .ISO, referring to the ISO 9660 file system commonly used on such disks. The .ISO format is the most common format for Linux distributions and other disk images distributed over the internet, but it is not a multi-track image format and thus cannot be used for Audio CDs. Other common CD image formats are .NRG (Nero Burning ROM's proprietary format), .BIN/.CUE, .MDF/.MDS (Alcohol 120%'s proprietary format) and .CCD/.IMG/.SUB (CloneCD's proprietary format). All of these support multi-track CDs.

Disk images can either be compressed using some type of compression algorithm like LZW, or uncompressed ("raw").

.ISO

Main article: ISO image

A .ISO file is a disk image of an ISO 9660 file system. The term ISO image is also used informally to refer to any optical disk image, even if the disk uses another file system, such as UDF. The format is used by most CD/DVD authoring utilities. .ISO files may be created from existing physical media or from files and folders on a computer. .ISO images can be mounted in "virtual drives" which emulate physical hardware, or burned to CDs or DVDs.

.ISO files are often used to distribute large programs or software systems over the internet. Operating systems such as Linux or BSD systems installation disks and LiveCDs are typically available as .ISO images. The format is also popular for peer-to-peer file sharing of pirated commercial software.

On Mac OS X, ISO images often have the .cdr extension.

.BIN/.CUE

The .BIN/.CUE image file format, developed by Jeff Arnold for the CDRWin program,citation needed] consists of two files which contain binary data and metadata, respectively. The filenames typically match (e.g. image.bin and image.cue).

The .BIN file contains an exact copy of all data stored on an optical disk in raw, unprocessed form. For this reason, some programs use the .RAW suffix for these files. The file contains all data stored on the original disk - not only its files and folders, but also system-specific information such as boot loaders, volume attributes, error correction codes and other metadata on the disk itself. Of the 2352 bytes in each CD sector, only 2048 contain user data; the additional 304 bytes per sector primarily contain error correction information. Other formats, such as .ISO, do not store all this (mostly redundant) information, resulting in a smaller file. The .BIN format is useful for exotic disks, such as those containing multiple tracks or mixed track types (Audio+Data or Data+Audio), and for non-PC CDs (e.g. PSX, VCD, Mac).

The .CUE file is a "cue sheet" that describes the data stored in the .BIN file. The .CUE file is a plain text file. A typical .CUE file is as follows:

FILE "IMAGE.BIN" BINARY
  TRACK 01 MODE1/2352
  INDEX 01 00:00:00

The file would be saved as IMAGE.CUE to match the file name prefix of IMAGE.BIN.

.IMG

.IMG is the filename extension usually used for the disk image of floppy disks, and sometimes, hard disks. A .IMG file contains a raw dump of the content of a disk. First popularized by the DOS-based programs HD-Copy (for hard drives) and DiskDupe (for floppy disks) and now utilized by WinRaWrite, the .IMG format is a handy way to archive a floppy disk completely, including bootable ones.

The img extension was also used by the Macintosh application ShrinkWrap by Aladdin Systems (now Allume Systems), for Mac OS 9 and older.

Some newer software, like WinImage, supports a zipped version of the format, which uses the .IMZ extension.

Apple Disk Image

Main article: .dmg

For Macintosh computers, disk images have been available as a feature of the operating system since before System 7. Mounting a compatible disk image is achieved by double-clicking (opening) the image file. The archived volume is then available as a normal disk volume, indistinguishable at first glance from a physical volume. Modern Apple Disk Images for Mac OS X typically end in .DMG. Using NetBoot, client computers can start up over a network from a server-based disk image that contains system software. The default handler for disk images in Mac OS X is DiskImageMounter. Images may be created with Disk Utility in Mac OS X and with Disk Copy in older versions of the Mac OS.

See also

  • Archive formats
  • Bootloader
  • Disk cloning
  • ISO image
  • Loop device
  • ROM image
  • Mini Image

Reference

  • http://forums.afterdawn.com/thread_view.cfm/19244
Forms of pirated movie releases
Cam | Telesync (TS) | Telecine (TC) | Workprint (WP) | Screener (SCR) | DVD-Rip | DVDR Image | HDTV-Rip
Search Term: "Disk_image"
disk image news and disk image articles

Here's our top rated disk image links for the day:

Users Talk Virtual Tension 

Byte and Switch - Nov 16 2:31 PM
Spiraling costs, backup issues, and lack of third-party support are among the challenges facing VMware users as they look to reap the benefits of virtualization.

Virtualization the Simplest Way 
CIOL - Nov 16 4:03 AM
Parallels Workstation is an OS virtualization software. It lets you create and run multiple virtual machines on a single machine, fast and easy

U2, U3 and maybe U4 
TechWorld - Nov 14 4:13 AM
Thirty gigs on a stick could change the rules of the PC game. Fujitsu Siemens Computer's chief technology officer, Dr. Joseph Reger, thinks something is stirring and getting ready to surface. He calls it PC virtualisation and talks about the possible separation of PC hardware from all of its software stack: operating system; applications; and settings.

Thank you for viewing the disk image page disk image. 

diskimage

 

Ever wondered what others are searching for in relation to disk image? Now you can see.  Below is a listing of  what everyone else is searching for in regard to disk image.

disk image
disk image software
microsoft visio 2003 iso disk image
disk recovery image
boot disk image
disaster recovery disk image software
mac os disk image
tiger bootable dvd disk image mac
free disk image software
mac disk image
apple 2 disk images
disk image backup
disk image freeware
diy irecover fat disk image
free clone image of your entire hard disk
irecover fat disk image
server disk image
create disk image
disk express self-extracting diskette image
drive image pro and disk free imaging software
free disk image
how do i make a disk image
linux disk image
windows xp disk image
amiga disk image
apple emulator disk images
cd disk image
creating a disk image
disk image linux
disk image to cd
disk image utility
floppy disk image
ghost disk image
san disk image mate
a disk read error occured norton ghost image
apple  images disk emulator
disk image creator
disk image file
disk image recovery
disk image restore
disk image windows
diy irecover disk image
how to make a disk image
image to disk
legacy of the ancients disk image
ntfs disk image file
open source disk image
os x disk image
scooby doo jinx at the sphinx disk image
scooby doo jinx at the sphinx free disk image
sparse disk image
what is a disk image
windows 95 disk images
windows 98 boot disk image
active disk image
amiga disk image download
apple ii disk image
backup disk image
bochs disk image
boot disk cd image
bootable disk image
cd disk images
clone image of your entire hard disk
create a disk image
database disk image is malformed
disk copy image
disk express image
disk image clone
disk image copy
disk image dmg
disk image floppy
disk image format
disk image iso
disk image os x
disk image pro
disk image v2.30 win
disk image xp
disk to image
freeware disk image
helix linux disk image copy
how do you make a bootable disk image of xp
image disk linux
macintosh disk image
mount disk image
qemu disk image
tivo disk images
vmware disk image
win98 boot disk image
windows disk image
xp disk image for virtual pc
95 disk image
98 boot disk image
98 disk image
98 startup disk image
acronis disk image
acronis true image dynamic disk
adfs disk image
amiga flopy disk image
appletrek disk image
atari st disk image
best disk image
bin disk image
boot disk image download
boot image disk
burn a disk image
burn disk image
burn image to disk
burning disk image
classis os 8 can't open disk images
clone disk image
commodore disk images
compressed disk disk extension file format image shrinkit
copy disk image
couldn t find valid ram disk image
create disk image os
creating floppy diskettes from disk images xp
current image format is not supported by the disk
dd disk image
disk format image
disk image bin
disk image burn
disk image cd
disk image create
disk image creation
disk image dd
disk image download
disk image dvd
disk image editor
disk image failed
disk image failed to mount
disk image from
disk image ghost
disk image img
disk image mac
disk image mac os x
disk image mount
disk image mounter
disk image osx
disk image program
disk image software review
disk image starting
disk image tiger
disk image to dvd
disk image tool
disk image tools
disk image undelete
disk image usb
disk image viewer
disk image virtual
disk image windows xp
disk image writer
disk utility image
dmg disk image
download disk image
dvd disk image
encrypted disk image
extract a powerquest disk image
free software to extract a powerquest disk image
ghost image disk
grub disk image
how to create a disk image
how to create a image disk with ghost
how to create disk image
how to maek a disk image in windows
idvd disk image
image disk
image disk software
image disk utility
image floppy disk
image format is not supported by the disk
image from disk
image has not found any hard disk
image mate san disk
install disk image
iso disk image
iso image disk
mac emulator disk images
mac os x create disk image
mac os x disk image
make a disk image
make disk image
mount a disk image
mounting disk image
ndif disk image
nero disk image
ntfs disk image
open disk image
os disk image
os x create disk image
osx disk image
pc disk image
powerquest disk image
r disk image
ram disk image
raw disk image
repair disk image
rescue disk image
restore disk image
source disk image
startup disk image
system disk image
the current image format is not supported by the disk
tiger disk image
toast disk image
true image has not found any hard disk
virtual disk image
virtual pc disk image
win 98 boot disk image
windows 95 boot disk image
windows 98 disk image
windows 98 startup disk image
windows boot disk image
write sql image to disk in c
xp disk image
amiga workbench 3.x disk image downloads
apple  dos 3.3 system disk image
apple 2 disk image
apple2 disk images
best winxp disk image scheduler
copy floppy disk to image free
creating a disk image on windows xp
disk doubler image
disk image imgmaker
disk image mounting software
disk image os x cd
disk image raid
disk image screen
disk image tucows review
disk image up
disk wipe image
drive image error 91 disk manager detected
floppy disk image tool
format of dvd video disk image
free fan film movies .iso disk image
frewaree disk image
how do you make a disk image of xp
how to create a floppy disk image
how to make a mountable disk image
images of posterior disk ridging
mac os 8.6 on disk image
mac quadra disk image
msdos disk image
os x 10.3 installation disk image
photoshop disk image
windows 2000 boot disk iso image
windows98 disk image downloads with key
winxp disk image scheduler
xp disk image freezes on boot
xp encrypted disk image