<?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>The HyRax Macrocosm &#187; Recovery</title>
	<atom:link href="http://www.serenux.com/tag/recovery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.serenux.com</link>
	<description>Life, the Universe and Ubuntu.</description>
	<lastBuildDate>Mon, 21 Jun 2010 10:45:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>HowTo: Fix a missing eth0 adapter after moving Ubuntu Server from one box to another.</title>
		<link>http://www.serenux.com/2009/11/howto-fix-a-missing-eth0-adapter-after-moving-ubuntu-server-from-one-box-to-another/</link>
		<comments>http://www.serenux.com/2009/11/howto-fix-a-missing-eth0-adapter-after-moving-ubuntu-server-from-one-box-to-another/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:49:06 +0000</pubDate>
		<dc:creator>HyRax</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Jaunty]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.serenux.com/?p=642</guid>
		<description><![CDATA[Scenario: You have a box running Ubuntu Server. Something happens to the box and you decide to move the hard-drive to another physical machine to get the server back up and running. The hardware is identical on the other machine, so there shouldn&#8217;t be any issues at all, right? The machine starts up fine, but [...]]]></description>
			<content:encoded><![CDATA[<p>Scenario: You have a box running Ubuntu Server. Something happens to the box and you decide to move the hard-drive to another physical machine to get the server back up and running. The hardware is identical on the other machine, so there shouldn&#8217;t be any issues at all, right?</p>
<p>The machine starts up fine, but when you try and hit the network, you can&#8217;t. Closer inspection using the <em>ifconfig</em> command reveals that there is no &#8220;eth0&#8243; adapter configured. Why?</p>
<p>Here&#8217;s how to fix it.</p>
<p><span id="more-642"></span></p>
<p><img title="More..." src="http://www.serenux.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />Ubuntu Server keeps tabs on the MAC address of the configured ethernet adapter. Unlike Ubuntu Desktop, you can&#8217;t simply change network cards willy nilly &#8211; while Ubuntu Server does detect and automatically setup new cards, it won&#8217;t automatically replace any adapter already configured as eth0 with another one, so you need to tell Ubuntu Server that you no longer need the old adapter.</p>
<p>This problem can also appear if you have a virtual machine such as one from Virtualbox, and you move or copy it from one host to another without ensuring that the MAC address configured for that VM&#8217;s ethernet adapter is 100% identical to the previous one.</p>
<p>These instructions were done with Ubuntu Server 9.04 Jaunty Jackalope in mind, but should apply to just about any release.</p>
<ol>
<li>Since you can&#8217;t SSH in, you will need to login directly on the Ubuntu Server console as an appropriate user with sudo rights.<br />
.</li>
<li>Once logged in, type in the following and hit Enter:
<pre><span style="color: #000080;">$ sudo nano /etc/udev/rules.d/70-persistent-net.rules</span></pre>
</li>
<li>You are now presented with the Nano text editor and some info that looks similar to the following:
<pre><span style="color: #000080;"># This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x1004 (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="0a:03:27:c2:b4:eb", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"</span></pre>
</li>
<li>Delete the last two lines or simply comment out the SUBSYSTEM line on the end. This is a rule defining what MAC address should be explicitly assigned to &#8220;eth0&#8243;. Since you no longer have an ethernet card with the specified MAC address in this machine (it&#8217;s on the old PC, remember), Ubuntu Server effectively ignores your new ethernet adapter because its MAC address does not match the defined rule for &#8220;eth0&#8243;.<br />
.</li>
<li>Once you&#8217;ve made your changes, press CTRL + X and then Y and then Enter to save your changes.<br />
.</li>
<li>Now reboot your box with:
<pre><span style="color: #000080;">$ sudo reboot</span></pre>
</li>
<li>Upon reboot, Ubuntu Server will detect the &#8220;new&#8221; ethernet adapter in your PC and will automatically write a new rule into the <em>/etc/udev/rules.d/70-persistent-net.rules</em> file, thus enabling networking over eth0 for your server.<br />
.</li>
<li>To verify that the new adapter is working, type in:
<pre><span style="color: #000080;">$ ifconfig</span></pre>
<p>&#8230;and you should see eth0 now listed with your defined IP address.<br />
.</li>
<li>Test remote connectivity to the server and if all is well, then pat yourself on the back. You&#8217;re done.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.serenux.com/2009/11/howto-fix-a-missing-eth0-adapter-after-moving-ubuntu-server-from-one-box-to-another/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HowTo: Restore the Windows Master Boot Record (without using a Windows CD) using Ubuntu Karmic.</title>
		<link>http://www.serenux.com/2009/10/howto-restore-the-windows-master-boot-record-mbr-without-using-a-windows-cd-using-ubuntu-karmic/</link>
		<comments>http://www.serenux.com/2009/10/howto-restore-the-windows-master-boot-record-mbr-without-using-a-windows-cd-using-ubuntu-karmic/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 12:41:05 +0000</pubDate>
		<dc:creator>HyRax</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apt]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.serenux.com/?p=634</guid>
		<description><![CDATA[You know how it is &#8211; you take a client&#8217;s Windows based machine, do a dual-boot installation of Ubuntu (which replaces the Windows Master Boot Record, or MBR, with GRUB and sets up an option to boot Ubuntu or Windows) so the client can evaluate Ubuntu, but then later on for whatever reason, Ubuntu is [...]]]></description>
			<content:encoded><![CDATA[<p>You know how it is &#8211; you take a client&#8217;s Windows based machine, do a dual-boot installation of Ubuntu (which replaces the Windows Master Boot Record, or MBR, with GRUB and sets up an option to boot Ubuntu or Windows) so the client can evaluate Ubuntu, but then later on for whatever reason, Ubuntu is no longer wanted. It&#8217;s removed and you need to restore the system&#8217;s ability to natively boot Windows directly without a GRUB menu.</p>
<p>You&#8217;re probably thinking &#8220;why the hell would anyone want to do that?!&#8221;&#8230; well, the fact of the matter is you sometimes come across a client who is just too mind-set and refuses to use anything but Windows, so yes &#8211; sometimes you need to restore the Windows MBR, but how do you do that when you don&#8217;t have a Windows CD handy?</p>
<p>Well, here&#8217;s how to do it using nothing but an Ubuntu 9.10 Karmic LiveCD.</p>
<p><span id="more-634"></span>It&#8217;s a little known fact that the Windows bootloader is nothing special. In fact it contains nothing proprietary to Windows at all. All the Windows bootloader does is simply look for the partition marked as &#8220;bootable&#8221; or &#8220;active&#8221; and transfer control of the boot process to it.</p>
<p>And would you know it? The Ubuntu LiveCD has a binary image of a generic open source bootloader that does just that!</p>
<ol>
<li> Boot your soon-to-be-Windows-only machine using the Ubuntu 9.10 Karmic LiveCD. Doesn&#8217;t matter if it&#8217;s the 32-bit or 64-bit version.<br />
.</li>
<li>Once booted on the LiveCD, open a terminal by going to the Applications menu and then choose Accessories and then Terminal.<br />
.</li>
<li>Find out what the designation of the Windows drive is (generally it will be the first drive, eg: /dev/sda or /dev/hda). If you are not sure, issue the command:
<pre><span style="color: #000080;">$ sudo fdisk -l
</span></pre>
<p>&#8230;and review the output, looking for your NTFS Windows partition. Make note of the <em>drive</em> that partition resides on (not the partition itself), eg: &#8220;/dev/sda&#8221;, <span style="text-decoration: underline;">not</span> &#8220;/dev/sda1&#8243;.</p>
<p><span style="color: #000080;"> </span></li>
<li>Now type in the following (remembering to substitute the correct drive device name for your setup in place of &#8220;/dev/sda&#8221;):
<pre><span style="color: #000080;">$ sudo dd if=/usr/lib/syslinux/mbr.bin of=/dev/sda</span></pre>
<p>&#8230;which will write the image of a standard MBR contained in the /usr/lib/syslinux directory of the LiveCD environment to the first hard-drive, overwriting GRUB. <span style="color: #ff0000;"><strong><em>WARNING: Do NOT use a partition designation, eg: &#8220;sda1&#8243; or &#8220;sda2&#8243;, etc. This will overwrite the start of that partition which will effectively destroy data. The MBR exists at the start of the drive only, so only specify &#8220;sda&#8221; with no number on the end.</em></strong></span></p>
<p><span style="color: #000080;"> </span></li>
<li>Shutdown and reboot. Windows should now start &#8220;natively&#8221; without GRUB appearing at all.<br />
.</li>
<li>Normally I&#8217;d say &#8220;pat yourself on the back&#8221; here, but it&#8217;s Windows&#8230; <img src='http://www.serenux.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.serenux.com/2009/10/howto-restore-the-windows-master-boot-record-mbr-without-using-a-windows-cd-using-ubuntu-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Reclaim reserved disk space on non-system drives taken by the Ext3 filesystem.</title>
		<link>http://www.serenux.com/2009/04/howto-reclaim-reserved-disk-space-on-non-system-drives-taken-by-the-ext3-filesystem/</link>
		<comments>http://www.serenux.com/2009/04/howto-reclaim-reserved-disk-space-on-non-system-drives-taken-by-the-ext3-filesystem/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:53:49 +0000</pubDate>
		<dc:creator>HyRax</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Hard-Drive]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://www.serenux.com/?p=471</guid>
		<description><![CDATA[I made a rather alarming discovery today, quite by accident. Like most people, I use an external hard-drive to backup data to, or to shift things around if I&#8217;m low on space on my PC&#8217;s internal drive. Well, today that external drive reported that it was full. Damn. So I fire up Ubuntu&#8217;s Disk Usage [...]]]></description>
			<content:encoded><![CDATA[<p>I made a rather alarming discovery today, quite by accident.</p>
<p>Like most people, I use an external hard-drive to backup data to, or to shift things around if I&#8217;m low on space on my PC&#8217;s internal drive. Well, today that external drive reported that it was full. Damn.</p>
<p>So I fire up Ubuntu&#8217;s Disk Usage Analyser, aka Boabab, to find out what&#8217;s consuming the most space. I use a 1TB external drive and it&#8217;s formatted total is about 916GB, which is about right, however Boabab reported that the total consumption of data on the drive only added up to about 860GB &#8211; wtf? Even Nautilus&#8217;s Volume Properties window was reporting that the drive still had 50GB-odd free, so why is the system telling me it&#8217;s full?</p>
<p>I use Ext3 on my drives and, being a journalled filesystem, some space on the drive is reserved to record these journals among other functions which is expected, but 50GB worth? I did some research and found out that the Ext3 filesystem reserves 5% of disk space by default for itself! In this day and age of large drives, that&#8217;s a huge chunk of lost space!!</p>
<p>Thankfully there is a way to tell Linux not to reserve so much space. Read on&#8230;</p>
<p><span id="more-471"></span></p>
<ol>
<li>First up, unmount your drive. You can do that by either right-clicking on the drive icon on the desktop and choosing &#8220;Unmount volume&#8221; or by clicking on the Eject icon next to it in the Places pane of any Nautilus window.<br />
.</li>
<li>Next, open up a terminal and type the following:
<pre><span style="color: #000080;">$ sudo fdisk -l
</span></pre>
<p>This will list all your available drives. Identify which one is your external drive and take note of the device name, eg: in my case my external drive appears as /dev/sdb with one partition on it, sdb1.<br />
.</li>
<li>Now type in the following:
<pre><span style="color: #000080;">$ sudo tune2fs -m 1 /dev/sdb1
</span></pre>
<p>This will modify the filesystem on that drive, on that one partition, to only reserve 1% instead of the default 5%.<br />
.</li>
<li>Now re-mount your drive by clicking on its name in the Places pane in a Naultilus window.<br />
.</li>
<li>The Nautilus Device Properties window will still show the same free space as before, because it reports the true total free space, but any Nautilus File Manager window only reports <em>usable</em> free space, which in the case of my external drive had now freed up a very sizable 37GB!<br />
.</li>
<li>Lather, rinse, repeat on any other non-system drive partitions on the same or different drive you want to reclaim space back for.</li>
</ol>
<p>You learn something new everyday. <img src='http://www.serenux.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.serenux.com/2009/04/howto-reclaim-reserved-disk-space-on-non-system-drives-taken-by-the-ext3-filesystem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Image your hard-drive for transfer or backup using dd</title>
		<link>http://www.serenux.com/2008/11/howto-image-your-hard-drive-for-transfer-or-backup-using-dd/</link>
		<comments>http://www.serenux.com/2008/11/howto-image-your-hard-drive-for-transfer-or-backup-using-dd/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 10:47:38 +0000</pubDate>
		<dc:creator>HyRax</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.serenux.com/?p=111</guid>
		<description><![CDATA[Imaging, also known as Ghosting in the Windows world, is the act of creating a sector-by-sector copy of a hard-drive and saving it to a file, or transferring it to another hard-drive. Such uses for imaging include: Backup to an image file Clone to another hard-drive (eg: building multiple identical workstations) either directly or via [...]]]></description>
			<content:encoded><![CDATA[<p>Imaging, also known as Ghosting in the Windows world, is the act of creating a sector-by-sector copy of a hard-drive and saving it to a file, or transferring it to another hard-drive. Such uses for imaging include:</p>
<ul>
<li>Backup to an image file</li>
<li>Clone to another hard-drive (eg: building multiple identical workstations) either directly or via an image file</li>
<li>Data recovery (it&#8217;s safer and easier to examine an image file than risk further damage to the hard-drive itself)</li>
</ul>
<p>Linux has a neat little command that can do this for us called simply &#8220;dd&#8221;. It is completely filesystem independent, so you can backup any hard-drive regardless of whether it was Linux formatted, Mac formatted or Windows formatted. It copies the drive bit by bit, sector by sector, not file by file.</p>
<p><span id="more-111"></span></p>
<p><span style="color: #ff0000;"><em><strong>WARNING:</strong> The following article describes commands that can destroy the information on your hard-drive with next-to-no-chance of being able to rescue what&#8217;s left. Make sure that you have full backups of your data prior to using these commands. You use these commands at your own risk!</em></span></p>
<p>First up, your drive/partition being backed up or written to should be unmounted before you begin. If you were trying to backup the partition containing your system&#8217;s root filesystem, you should boot up your system on a LiveCD so you can access your root partition unmounted.</p>
<p>You then need to determine which drive or partition you want to backup. Easiest way to do this is to fire up a terminal session and type in:</p>
<pre><span style="color: #000080;">$ sudo fdisk -l</span></pre>
<p>&#8230;which will list all your drives, their partitions and sizes. Note down the device name of the drive or partition you wish to backup, eg: /dev/sda for the whole of your first drive or /dev/sda1 for just the first partition of that drive, and you&#8217;re ready to begin backup.</p>
<p>At its simplest, backing up a drive takes two basic parameters &#8211; input device and output device or file as follows:</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/sda1 of=/dev/sdb1</span></pre>
<p>&#8230;will copy the content of the first partition on drive sda to the first partition of drive sdb (destroying whatever was in /dev/sdb1 previously).</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/sda1 of=~/mybackup.img</span></pre>
<p>&#8230;will copy the content of the first partition on drive sda to a file called mybackup.img in your Home directory.</p>
<p>If you wish to backup an entire drive rather than just a partition, drop the number on the drive name, ie: /dev/sda1 becomes /dev/sda instead.</p>
<p>To restore the image to a drive, simply reverse the parameters:</p>
<pre><span style="color: #000080;">$ sudo dd if=~/mybackup.img of=/dev/sda1</span></pre>
<p>How simple is that? The only issue with this method of backup, though, is that if you were to backup a 10GB partition containing only 5GB of actual data, the resulting image file will still be 10GB as dd does not simply copy active data from the drive, it copies <em>everything</em>.</p>
<p>So with that in mind, let&#8217;s compress the image, so any empty space on the drive doesn&#8217;t take up unnecessary space in the image file. We can do this by piping the data from dd into gzip before writing it to a file:</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/sda1 | gzip -9 &gt; ~/mybackup.img.gz</span></pre>
<p>&#8230;and to restore, we simply pipe the decompressed data into dd again for writing to the drive:</p>
<pre><span style="color: #000080;">$ gunzip -c ~/mybackup.img.gz | sudo dd of=/dev/sda1</span></pre>
<h3>But wait! There&#8217;s more!</h3>
<p>This just scratches the surface of what you can do with dd. For example, you can also use dd to destroy a drive&#8217;s content before you dispose of, or sell the drive by using the following:</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/random of=/dev/sda1</span></pre>
<p>&#8230;which will write random data to the partition sda1 using the virtual random device, completely obliterating it.</p>
<p>Or, if you want a more uniform destruction, try:</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/zero of=/dev/sda1</span></pre>
<p>&#8230;which will &#8211; no surprises here &#8211; write zeros across the entire partition.</p>
<p>Or perhaps you have a drive that isn&#8217;t playing nice, for example Microsoft Windows can get stroppy when working with, or removing partitions created by a foreign OS. The easiest way to fix this is to simply destroy the Master Boor Record (MBR). You can achieve this by specifying a blocksize parameter. The MBR is inside the first 512 bytes of the drive, so all we have to do is blank those 512 bytes out using:</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/zero of=/dev/sda bs=512 count=1</span></pre>
<p>The bs parameter specifies the block size in bytes (in this case 512) and the count parameter specifies how many blocks of 512 bytes we&#8217;re doing (only one in this case, the first 512 bytes of the drive where the MBR resides).</p>
<p>Any PC will now view this hard-drive as a brand new, never partitioned drive.</p>
<h3>Rescuing a dying hard-drive</h3>
<p>The dd command is particularly useful for recovering data on a drive that&#8217;s about to become a paperweight. As long as it can power up and identify itself to the system, you can attempt data recovery by taking an image of the drive and then try to recover the files from that image.</p>
<p>Since dying hard-drives are typically sown with errors, we need to tell dd to ignore them and keep pulling as much data off as possible. Taking our first imaging example, we add a couple of parameters to the command as follows:</p>
<pre><span style="color: #000080;">$ sudo dd if=/dev/sda of=~/mybackup.img conv=noerror,sync</span></pre>
<p>This will make a full backup of all partitions on drive /dev/sda to a file called mybackup.img in your Home directory, and the conv parameter tells dd to ignore any errors found during the read by skipping over them. The sync parameter tells dd to replace the errors with null values &#8211; blanks &#8211; so that the resulting image file is the same data length as the drive.</p>
<p>Once the backup is complete, you can then mount the image to view its content. As long as the MBR (the first 512 bytes of the hard-drive) were not damaged, you will be able to now recover most, if not all your files, without worrying about further failure to the drive or odd behaviour due to the physical errors on the drive itself.</p>
<p>To mount the image file, you do the following. First we need a mountpoint &#8211; a place to reference the mounted image volume:</p>
<pre><span style="color: #000080;">$ mkdir /dev/shm/myrecoveryimage</span></pre>
<p>This creates a directory called &#8220;myrecoverytimage&#8221; in your system&#8217;s RAM drive. Before you point out that you have less physical RAM than the capacity of your hard-drive, don&#8217;t worry &#8211; this is just a mount-point. The image will still be physically read from wherever you put it on another drive.</p>
<p>Now we mount the image. Let&#8217;s say we backed up a standard Linux ext3-formatted drive:</p>
<pre><span style="color: #000080;">$ sudo mount -t ext3 -o loop ~/.mybackup.img /dev/shm/myrecoveryimage</span></pre>
<p>&#8230;or for a Windows NTFS formatted backup image:</p>
<pre><span style="color: #000080;">$ sudo mount -t ntfs -o loop ~/.mybackup.img /dev/shm/myrecoveryimage</span></pre>
<p>We have told the system to mount an image file of filesystem type Ext3 (or NTFS). We have to specify the loopback device because an image file is not a block device like a hard-drive is. We then specify the filename of the image we are wanting to mount, and finally where we are mounting it to.</p>
<p>You can now simply switch over to the mountpoint directory and see the content of the image file as though it were any normally mounted hard-drive.</p>
<pre><span style="color: #000080;">$ cd /dev/shm/myrecoveryimage
$ ls -l</span></pre>
<p>There are a plethora of filesystems that the mount command can manage including FAT, NTFS network filesystems etc. Refer to the man page for the mount command for more details.</p>
<p>When you have finished with the image, you can unmount it with:</p>
<pre><span style="color: #000080;">$ sudo umount /dev/shm/myrecoveryimage</span></pre>
<p>&#8230;and that will make the /dev/shm/myrecoverimage directory revert back to an ordinary empty directory again (which, being in the RAM disk, will be lost when you reboot).</p>
<p>Happy dd&#8217;ing! <img src='http://www.serenux.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='wp_likes' id='wp_likes_post-111'><a class='like' href="javascript:wp_likes.like(111);" title='' ><img src="http://www.serenux.com/wp-content/plugins/wp-likes/images/like.gif" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(111);">Unlike</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.serenux.com/2008/11/howto-image-your-hard-drive-for-transfer-or-backup-using-dd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
