<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; disk image</title>
	<atom:link href="http://www.ghacks.net/tag/disk-image/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Wed, 25 Nov 2009 15:55:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>dd: the ultimate disk cloning tool</title>
		<link>http://www.ghacks.net/2009/01/17/dd-the-ultimate-disk-cloning-tool/</link>
		<comments>http://www.ghacks.net/2009/01/17/dd-the-ultimate-disk-cloning-tool/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 00:16:16 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[acronis true image]]></category>
		<category><![CDATA[clone disk]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[copy data]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[disk cloning]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9947</guid>
		<description><![CDATA[I recently had to clone a hard disk so I naturally turned to solutions such as Acronis True Image, but I discovered these did not work (the start-up disk claimed the clong was &#8216;complete&#8217; when it blatantly wasn&#8217;t) and I also tried copying the partition using gParted in Ubuntu but this froze at about 3%, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to clone a hard disk so I naturally turned to solutions such as Acronis True Image, but I discovered these did not work (the start-up disk claimed the clong was &#8216;complete&#8217; when it blatantly wasn&#8217;t) and I also tried copying the partition using gParted in Ubuntu but this froze at about 3%, due to corrupt data, which seemed not to be caught in a chkdsk.</p>
<p>I was about to give up hope and copy the files manually when I came across an extremely powerful, yet simple, Unix command: dd.</p>
<p>Using a Linux live disc, dd can be used to copy files, disks and partitions. It can output directly onto another disc or as an image (like an iso).</p>
<p>dd copies data byte-exactly, meaning it won&#8217;t get stuck should it encounter corrupted or fragmented data.</p>
<p><span id="more-9947"></span>dd is nicknamed &#8216;destroy disk&#8217; as mistyping one letter can wipe your hard disk, so caution must be used.</p>
<p>To copy a hard disk, one would use the following command (whilst root):</p>
<p><code>dd if=/dev/hdx of=/dev/hdy</code></p>
<p>hdx is the input hard disk (to be copied) and hdy is the output hard disk (where it is to be copied to).</p>
<p>if = input<br />
of = output</p>
<p>This is extremely important to remember and their names must be altered according to how they are on your computer (use a tool like gParted to find out your drive&#8217;s paths). For example, your &#8216;if&#8217; may be /dev/sdb whilst your &#8216;of&#8217; may be /dev/sda, but this obviously varies according to how you want to use it and computer-by-computer so you MUST check. An extremely intelligent friend of mine accidentally wiped a hard drive using this command!</p>
<p>Another use would be to use it to produce a CD image:</p>
<p><code>dd if=/dev/cdrom of=image.iso bs=2k</code>.</p>
<p><a href="http://www.debianhelp.co.uk/ddcommand.htm"><br />
Debian Help has a more complete guide.</a></p>

	Tags: <a href="http://www.ghacks.net/tag/acronis-true-image/" title="acronis true image" rel="tag">acronis true image</a>, <a href="http://www.ghacks.net/tag/clone-disk/" title="clone disk" rel="tag">clone disk</a>, <a href="http://www.ghacks.net/tag/command/" title="command" rel="tag">command</a>, <a href="http://www.ghacks.net/tag/copy-data/" title="copy data" rel="tag">copy data</a>, <a href="http://www.ghacks.net/tag/dd/" title="dd" rel="tag">dd</a>, <a href="http://www.ghacks.net/tag/disk-cloning/" title="disk cloning" rel="tag">disk cloning</a>, <a href="http://www.ghacks.net/tag/disk-image/" title="disk image" rel="tag">disk image</a>, <a href="http://www.ghacks.net/tag/iso/" title="iso" rel="tag">iso</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/unix/" title="unix" rel="tag">unix</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/29/remote-ssh-run-processes-anywhere-on-different-platforms/" title="Remote SSH: Run processes anywhere on different platforms (March 29, 2009)">Remote SSH: Run processes anywhere on different platforms</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/11/08/iso-creator/" title="ISO Creator (November 8, 2008)">ISO Creator</a> (4)</li>
	<li><a href="http://www.ghacks.net/2006/12/03/how-to-easily-dump-ps3-movies-and-games/" title="How to easily dump PS3 movies and games (December 3, 2006)">How to easily dump PS3 movies and games</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/01/27/burn-cds-from-command-line/" title="Burn CDs From Command Line (January 27, 2009)">Burn CDs From Command Line</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/" title="Burn CD and DVD ISO Images with K3B (January 11, 2009)">Burn CD and DVD ISO Images with K3B</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/01/17/dd-the-ultimate-disk-cloning-tool/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>ISO Creator</title>
		<link>http://www.ghacks.net/2008/11/08/iso-creator/</link>
		<comments>http://www.ghacks.net/2008/11/08/iso-creator/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 21:38:59 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[burn iso]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[free iso creator]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[iso creator]]></category>
		<category><![CDATA[iso image]]></category>
		<category><![CDATA[mount iso]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8164</guid>
		<description><![CDATA[Yesterday we covered a software program that was able to mount up to 20 ISO images on a computer system. Lee Mathews over at the Download Squad mentioned a tool on the same day that could be used to create ISO images. ISO Creator, the name of the application, can be used to create ISO [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday we covered a software program that was able to <a href="http://www.ghacks.net/2008/11/07/mount-up-to-20-iso-images/">mount up to 20 ISO images</a> on a computer system. <a href="http://www.downloadsquad.com/2008/11/06/free-iso-creator-creates-images-in-three-easy-steps/">Lee Mathews</a> over at the Download Squad mentioned a tool on the same day that could be used to create ISO images. ISO Creator, the name of the application, can be used to create ISO images from files or folders of the computer&#8217;s hard drive.</p>
<p>The benefits of creating ISO images and mounting them in Windows might outweigh the negative aspects. The main benefit is file management. Instead of having many folders and files scattered around the hard drive there is only one ISO file containing all the files. It&#8217;s not a difference speed wise either because the files are still located on the computer&#8217;s hard drive. The only negative aspect of this procedure is the fact that no new files can be added to the ISO image. The user would have to copy all files back to the computer, add the new ones and create a new ISO image.</p>
<p>The <a href="http://www.minidvdsoft.com/isocreator/index.html">Free ISO Creator</a> makes use of an easy to use interface that basically concentrates on adding files and folders using a file browser. It is possible to set a size limit for the ISO image. The three default sizes 700 MB, 4.5 GB and 8.0 GB are available as well as an option to create a custom sized ISO image which can be easily mounted as well.</p>
<p><span id="more-8164"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/11/iso_creator-500x461.jpg" alt="iso creator" title="iso creator" width="500" height="461" class="alignnone size-medium wp-image-8165" /></p>
<p>A few additional options like creating a bootable image or selecting a different file system for the ISO are available. Conversion of the files usually does not take longer than a few seconds depending on the size they occupy on the hard drive and some additional parameters like the hard drive&#8217;s speed.</p>
<p>The ISO images can be mounted or burned to CD or DVD afterwards.</p>

	Tags: <a href="http://www.ghacks.net/tag/burn-iso/" title="burn iso" rel="tag">burn iso</a>, <a href="http://www.ghacks.net/tag/disk-image/" title="disk image" rel="tag">disk image</a>, <a href="http://www.ghacks.net/tag/free-iso-creator/" title="free iso creator" rel="tag">free iso creator</a>, <a href="http://www.ghacks.net/tag/iso/" title="iso" rel="tag">iso</a>, <a href="http://www.ghacks.net/tag/iso-creator/" title="iso creator" rel="tag">iso creator</a>, <a href="http://www.ghacks.net/tag/iso-image/" title="iso image" rel="tag">iso image</a>, <a href="http://www.ghacks.net/tag/mount-iso/" title="mount iso" rel="tag">mount iso</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/07/mount-up-to-20-iso-images/" title="Mount Up To 20 ISO Images (November 7, 2008)">Mount Up To 20 ISO Images</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/01/17/dd-the-ultimate-disk-cloning-tool/" title="dd: the ultimate disk cloning tool (January 17, 2009)">dd: the ultimate disk cloning tool</a> (11)</li>
	<li><a href="http://www.ghacks.net/2006/12/16/vlite-windows-vista-configuration-tool/" title="Vlite Windows Vista Configuration Tool (December 16, 2006)">Vlite Windows Vista Configuration Tool</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/09/28/shardana-antivirus-rescue-disk-utility/" title="Shardana Antivirus Rescue Disk Utility (September 28, 2009)">Shardana Antivirus Rescue Disk Utility</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/09/14/remastersys-outstanding-solution-for-backup-and-custom-live-cds/" title="Remastersys: Outstanding solution for backup and custom Live CDs (September 14, 2009)">Remastersys: Outstanding solution for backup and custom Live CDs</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/08/iso-creator/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mount Up To 20 ISO Images</title>
		<link>http://www.ghacks.net/2008/11/07/mount-up-to-20-iso-images/</link>
		<comments>http://www.ghacks.net/2008/11/07/mount-up-to-20-iso-images/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 20:41:50 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[iso image]]></category>
		<category><![CDATA[isodisk]]></category>
		<category><![CDATA[mount cd]]></category>
		<category><![CDATA[mount dvd]]></category>
		<category><![CDATA[mount image]]></category>
		<category><![CDATA[virtual cd]]></category>
		<category><![CDATA[virtual dvd]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8141</guid>
		<description><![CDATA[We have covered virtual CD / DVD drive applications before here at Ghacks. Among them popular applications such as Virtual CloneDrive which was able to create up to eight virtual CD drives that made it possible to mount image formats such as iso, img or dvd on a computer system.
ISODisk is another software that can [...]]]></description>
			<content:encoded><![CDATA[<p>We have covered virtual CD / DVD drive applications before here at Ghacks. Among them popular applications such as <a href="http://www.ghacks.net/2008/08/24/virtual-cd-drive-software/">Virtual CloneDrive</a> which was able to create up to eight virtual CD drives that made it possible to mount image formats such as iso, img or dvd on a computer system.</p>
<p><a href="http://www.isodisk.com/">ISODisk</a> is another software that can create virtual CD drives. It is limited to the ISO format but can mount up to 20 images on virtual CD drives which might be interesting for users who need more than the usual 4-8 virtual drives that the other applications provide.</p>
<p>The interface if ISODisk is one of the cleanest in the field. All of the software&#8217;s functions can be configured in two tabs. The first tab displays the 20 possible virtual drives including their drive letters. The same window provides access to a file browser that can be used to locate an ISO image on the computer&#8217;s hard drive or local area network and mount it to one of the available drive letters.</p>
<p><span id="more-8141"></span>The fact that the drive letters are displayed makes it very easy to select specific drive letters for the ISO images and provides a great overview of the currently mounted images.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/11/virtual_cd-442x500.gif" alt="virtual cd" title="virtual cd" width="442" height="500" class="alignnone size-medium wp-image-8142" /></p>
<p>The second tab contains an application to create an ISO image from a CD or DVD. A test with the original Fallout 3 DVD and the Fallout 3 Bonus CD lead to an error message. Could be a very nice and handy feature if it would be working. If you try it let me know if it works on your computer or if it throws an error message.</p>
<p>The biggest advantage if ISODisk is that it can mount up to 20 images in an easy to manage program interface. Support for additional image formats and a better explanation of the ISO creation are much needed features though.</p>

	Tags: <a href="http://www.ghacks.net/tag/disk-image/" title="disk image" rel="tag">disk image</a>, <a href="http://www.ghacks.net/tag/iso-image/" title="iso image" rel="tag">iso image</a>, <a href="http://www.ghacks.net/tag/isodisk/" title="isodisk" rel="tag">isodisk</a>, <a href="http://www.ghacks.net/tag/mount-cd/" title="mount cd" rel="tag">mount cd</a>, <a href="http://www.ghacks.net/tag/mount-dvd/" title="mount dvd" rel="tag">mount dvd</a>, <a href="http://www.ghacks.net/tag/mount-image/" title="mount image" rel="tag">mount image</a>, <a href="http://www.ghacks.net/tag/virtual-cd/" title="virtual cd" rel="tag">virtual cd</a>, <a href="http://www.ghacks.net/tag/virtual-dvd/" title="virtual dvd" rel="tag">virtual dvd</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/19/gizmo-drive-mounting-with-new-features/" title="Gizmo Drive Mounting With New Features (January 19, 2009)">Gizmo Drive Mounting With New Features</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/totalmounter-virtual-dvd-drive-software/" title="TotalMounter Virtual DVD Drive Software (May 20, 2009)">TotalMounter Virtual DVD Drive Software</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/12/29/mount-iso-images/" title="Mount Iso Images (December 29, 2008)">Mount Iso Images</a> (17)</li>
	<li><a href="http://www.ghacks.net/2008/08/24/virtual-cd-drive-software/" title="Virtual CD Drive Software (August 24, 2008)">Virtual CD Drive Software</a> (14)</li>
	<li><a href="http://www.ghacks.net/2008/11/08/iso-creator/" title="ISO Creator (November 8, 2008)">ISO Creator</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/07/mount-up-to-20-iso-images/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>O&amp;O DiskImage 3 Express Edition</title>
		<link>http://www.ghacks.net/2008/09/03/oo-diskimage-3-express-edition/</link>
		<comments>http://www.ghacks.net/2008/09/03/oo-diskimage-3-express-edition/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 09:46:01 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup drive]]></category>
		<category><![CDATA[backup program]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[drive backup]]></category>
		<category><![CDATA[paragon]]></category>
		<category><![CDATA[windows backup]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6731</guid>
		<description><![CDATA[O&#038;O DiskImage 3 Express is a backup software that backs up all hard drives that are connected to the computer with the press of a button. That is by far the main selling point of O&#038;O DiskImage 3 Express Edition. The backup program is basic and intends to be that way, supposedly for the user&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>O&#038;O DiskImage 3 Express is a <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> that backs up all hard drives that are connected to the computer with the press of a button. That is by far the main selling point of O&#038;O DiskImage 3 Express Edition. The backup program is basic and intends to be that way, supposedly for the user&#8217;s sake but probably also because they need arguments to sell the professional and enterprise version of O&#038;O DiskImage 3.</p>
<p>O&#038;O DiskImage 3 <a href="http://www.oo-software.com/home/en/products/oodiskimageexpress/">Express Edition</a> comes with three buttons that control the backup and restoration process. Button 1 creates an image of all system partitions on the computer. The user simply selects a drive where he wants the backup to be restored and that&#8217;s it. No selection of single partitions, no options whatsoever. Pure and simple but probably to simple for tech savvy users.</p>
<p>The second button restores a partition. One major drawback is that the system partition cannot be restored. So all personal data on that partition is lost unless you buy the pro or enterprise version which can restore the system partition.</p>
<p><span id="more-6731"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/09/oo_diskimage3.jpg" alt="oo diskimage3" title="oo diskimage3" width="420" height="135" class="alignnone size-medium wp-image-6732" /></p>
<p>The question that arises is why the program does backup the system partition if it cannot be recovered? The answer to that is probably a business decision. Would a user who needs data from his system partition buy a commercial version of DiskImage? I bet he would.</p>
<p>The last button lets a user browse an image that was created. Each additional backup only saves the differences and not the full partition saving disk space on the (external) hard drive where the images will be stored on. </p>
<p>Paragon&#8217;s <a href="http://www.ghacks.net/2008/08/15/drive-backup/">Drive Backup</a> is an alternative which offers more functionality and the option to restore the system partition as well.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-drive/" title="backup drive" rel="tag">backup drive</a>, <a href="http://www.ghacks.net/tag/backup-program/" title="backup program" rel="tag">backup program</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/disk-image/" title="disk image" rel="tag">disk image</a>, <a href="http://www.ghacks.net/tag/drive-backup/" title="drive backup" rel="tag">drive backup</a>, <a href="http://www.ghacks.net/tag/paragon/" title="paragon" rel="tag">paragon</a>, <a href="http://www.ghacks.net/tag/windows-backup/" title="windows backup" rel="tag">windows backup</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (78)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/" title="Grab Your Free Copy of East-Tec Backup 2009 (July 4, 2009)">Grab Your Free Copy of East-Tec Backup 2009</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/06/22/google-docs-backup-software/" title="Google Docs Backup Software (June 22, 2009)">Google Docs Backup Software</a> (37)</li>
	<li><a href="http://www.ghacks.net/2008/08/15/drive-backup/" title="Drive Backup (August 15, 2008)">Drive Backup</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/09/03/oo-diskimage-3-express-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macrium Reflect Full Download</title>
		<link>http://www.ghacks.net/2008/06/16/macrium-reflect-full-download/</link>
		<comments>http://www.ghacks.net/2008/06/16/macrium-reflect-full-download/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 08:32:17 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[disk backup]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[hard-disk]]></category>
		<category><![CDATA[macrium reflect]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4999</guid>
		<description><![CDATA[I have reviewed Macrium Reflect Free two days ago and was really surprised to find the full version of Macrium Reflect on the Giveaway of the Day website. Giveaway of the Day offer one commercial application as a free download every day and today it&#8217;s Macrium Reflect which usually retails for €29.99 (that&#8217;s $46). All [...]]]></description>
			<content:encoded><![CDATA[<p>I have reviewed <a href="http://www.ghacks.net/2008/06/13/macrium-reflect-disk-imaging-free-edition/">Macrium Reflect</a> Free two days ago and was really surprised to find the full version of Macrium Reflect on the Giveaway of the Day website. Giveaway of the Day offer one commercial application as a free download every day and today it&#8217;s Macrium Reflect which usually retails for €29.99 (that&#8217;s $46). All you have to do is <a href="http://www.giveawayoftheday.com/macrium-reflect/">go to</a> the Giveaway of the Day website, download Macrium Reflect from there and install and activate it today.</p>
<p>Macrium Reflect is a fast Disk Imaging and File Backup Solution that is compatible to Windows XP 32/64 bit and Windows Vista 32/64 bit. I suggest you head over to my review to find out more about the software. All of the features of the free version are of course included in this one as well.</p>
<p>The commercial version of Macrium Reflect adds a few &#8211; very interesting &#8211; features. It adds:</p>
<p><span id="more-4999"></span>
<ul>
<li>Windows Server 2003 compatibility</li>
<li>File and Folder backup and restore</li>
<li>Differential disk images and backups</li>
<li>Incremental disk images and backups</li>
<li>VBScript Generator</li>
<li>Email notifications</li>
<li>Run programs before or after backup</li>
<li>Shut down PC after backup</li>
<li>Windows system event log support</li>
<li>Windows PE 2.0 Rescue CD with RAID support</li>
<li>Windows boot menu</li>
</ul>
<p>The incremental backups will definitely come in handy. </p>

	Tags: <a href="http://www.ghacks.net/tag/disk-backup/" title="disk backup" rel="tag">disk backup</a>, <a href="http://www.ghacks.net/tag/disk-image/" title="disk image" rel="tag">disk image</a>, <a href="http://www.ghacks.net/tag/hard-disk/" title="hard-disk" rel="tag">hard-disk</a>, <a href="http://www.ghacks.net/tag/macrium-reflect/" title="macrium reflect" rel="tag">macrium reflect</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/13/macrium-reflect-disk-imaging-free-edition/" title="Macrium Reflect Disk Imaging Free Edition (June 13, 2008)">Macrium Reflect Disk Imaging Free Edition</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/08/21/visualize-hard-drive-space/" title="Visualize Hard Drive Space (August 21, 2008)">Visualize Hard Drive Space</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/23/ultimate-defrag/" title="Ultimate Defrag (May 23, 2008)">Ultimate Defrag</a> (16)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/true-crypt-5-adds-system-partition-encryption/" title="True Crypt 5 adds System Partition Encryption (February 7, 2008)">True Crypt 5 adds System Partition Encryption</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/04/12/silencing-your-hard-drives/" title="Silencing your hard drives (April 12, 2008)">Silencing your hard drives</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/16/macrium-reflect-full-download/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Macrium Reflect Disk Imaging Free Edition</title>
		<link>http://www.ghacks.net/2008/06/13/macrium-reflect-disk-imaging-free-edition/</link>
		<comments>http://www.ghacks.net/2008/06/13/macrium-reflect-disk-imaging-free-edition/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 23:20:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[disk backup]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[hard-disk]]></category>
		<category><![CDATA[macrium reflect]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4965</guid>
		<description><![CDATA[Something that is introduced as &#8220;The fastest disk imaging software&#8221; is definitely worth a review here at Ghacks especially if a free version of the software is provided for everyone. I honestly have never heard of Macrium Reflect before when I spotted the entry in the Delicious hotlist. A quick research showed that it was [...]]]></description>
			<content:encoded><![CDATA[<p>Something that is introduced as &#8220;The fastest disk imaging software&#8221; is definitely worth a review here at Ghacks especially if a free version of the software is provided for everyone. I honestly have never heard of Macrium Reflect before when I spotted the entry in the Delicious hotlist. A quick research showed that it was most likely due to the articles published at  <a href="http://lifehacker.com/395990/macrium-reflect-free-creates-disk-images-on+the+fly">Lifehacker</a> and <a href="http://www.downloadsquad.com/2008/06/10/macrium-reflect-free-create-a-disk-image-without-rebooting/">Download Squad</a> that once again (unintentionally of course) pushed an application in Delicious after publication.</p>
<p><a href="http://www.macrium.com/reflectfree.asp">Macrium Reflect</a> is a disk imaging software for Windows XP, Windows Server and Windows Vista that&#8217;s available in 32-bit and 64-bit versions. It can backup partitions or full hard disks even when Windows is running which is definitely a nice to have feature. The backups can be stored on another hard drive, network drive or optical drive which is probably not the best choice if the size of the data is bigger than ten Gigabytes.</p>
<p>The backup can be compressed to save space which will in turn increase the time it takes to create the backup. The user has the choice between no, medium or high compression with medium being the default value. Two additional options are noteworthy: The option to choose between an intelligent sector copy which will not copy the Windows Pagefile and Hibernation file or an exact copy of the selected hard disk or partition.</p>
<p><span id="more-4965"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/06/macrium_reflect-500x388.jpg" alt="macrium reflect" title="macrium reflect" width="500" height="388" class="alignnone size-medium wp-image-4966" /></p>
<p>The second option is to set a maximum file size which can be set to automatic or user defined. The automatic file size will use the file system of the partition to determine the size. The full edition has a few features that the free does not have, especially incremental backups are worth to be mentioned.</p>
<p>It&#8217;s also worth to note that the computer has to be restarted before the first backup can be started. I tried it without restarting and received an error message but it worked fine after the first restart. A backup of my Windows partition with 38 Gigabyte of data did not take longer than 18 minutes to create which is definitely fast, not sure if it&#8217;s the fastest software though. The size on the hard disk was 29.4 Gigabytes.</p>
<p>Another important step is the creation of a rescue disk to be able to recover the backups when it&#8217;s necessary to do that. The last feature that deserves to be mentioned is the option to browse the images in Windows Explorer as if they were normal partitions. Great if you want to pick a file or folder from the image.</p>

	Tags: <a href="http://www.ghacks.net/tag/disk-backup/" title="disk backup" rel="tag">disk backup</a>, <a href="http://www.ghacks.net/tag/disk-image/" title="disk image" rel="tag">disk image</a>, <a href="http://www.ghacks.net/tag/hard-disk/" title="hard-disk" rel="tag">hard-disk</a>, <a href="http://www.ghacks.net/tag/macrium-reflect/" title="macrium reflect" rel="tag">macrium reflect</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/16/macrium-reflect-full-download/" title="Macrium Reflect Full Download (June 16, 2008)">Macrium Reflect Full Download</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/08/21/visualize-hard-drive-space/" title="Visualize Hard Drive Space (August 21, 2008)">Visualize Hard Drive Space</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/23/ultimate-defrag/" title="Ultimate Defrag (May 23, 2008)">Ultimate Defrag</a> (16)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/true-crypt-5-adds-system-partition-encryption/" title="True Crypt 5 adds System Partition Encryption (February 7, 2008)">True Crypt 5 adds System Partition Encryption</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/04/12/silencing-your-hard-drives/" title="Silencing your hard drives (April 12, 2008)">Silencing your hard drives</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/13/macrium-reflect-disk-imaging-free-edition/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
