<?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>fabi.me &#187; backup</title>
	<atom:link href="http://fabi.me/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://fabi.me</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 08:45:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Recover data from Photofast CR-5400</title>
		<link>http://fabi.me/en/sonstiges/recover-data-photofast-cr-5400/</link>
		<comments>http://fabi.me/en/sonstiges/recover-data-photofast-cr-5400/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 10:33:36 +0000</pubDate>
		<dc:creator>Fabi</dc:creator>
				<category><![CDATA[Sonstiges]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[memory card]]></category>
		<category><![CDATA[recover]]></category>

		<guid isPermaLink="false">http://fabi.me/?p=320</guid>
		<description><![CDATA[I&#8217;m using the PhotoFast CR-5400 microSDHC -&#62; MS Pro Duo Adapter with two 8 GB microSD HC cards for my PSP. It worked fine the first days, but after the PSP switched off due to empty battery the adapter stopped working (I think it was because of canceled writing). Neither the PSP nor a card [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffabi.me%2Fen%2Fsonstiges%2Frecover-data-photofast-cr-5400%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe></div><div class="really_simple_share_google1" style="width:90px;"><div class="g-plusone" data-size="medium" data-href="http://fabi.me/en/sonstiges/recover-data-photofast-cr-5400/" ></div></div></div>
		<div style="clear:both;"></div><p>I&#8217;m using the PhotoFast CR-5400 microSDHC -&gt; MS Pro Duo Adapter with two 8 GB microSD HC cards for my PSP. It worked fine the first days, but after the PSP switched off due to empty battery the adapter stopped working (I think it was because of canceled writing). Neither the PSP nor a card reader recognized it.<span id="more-320"></span></p>
<p>I found a way to restore your data stored on both microSD cards:</p>
<ol>
<li>Get the program <em>dd</em> from <a href="http://www.chrysocome.net/dd">http://www.chrysocome.net/dd</a> (this tool can be used to create images of any kind of storage disks). Extract the ZIP file somewhere on your hard drive.</li>
<li>Insert the first microSD Card into your cardreader</li>
<li>Click Start-&gt;Run&#8230;, type <em>cmd</em> and press enter.</li>
<li>In the console window type<br />
<code>cd <em>[directory where you extracted dd in Step1]</em></code><br />
and press enter. For example:<br />
<code>cd c:Downloadsdd</code>
</li>
<li>Now execute<br />
<code>dd --list</code><br />
and find your microSD card in the listet devices (you can either compare the size or unplug the memory card and see which device disappears from the list). In my case it was <em>\?DeviceHarddisk6</em></li>
<li>Run dd (replace <em>Harddisk<strong>6</strong></em> with the number from step 5!)<br />
<code>dd if=\?DeviceHarddisk6Partition0 of=cr5400.img bs=1M --size --progress</code>
</li>
<li>Wait until dd has copied all data from your card. When it&#8217;s done the output should look like this:<br />
<code>C:rcovdd&gt;dd if=\?DeviceHarddisk6Partition0 of=cr5400.img bs=1M --size --progress<br />
rawwrite dd for windows version 0.5.<br />
Written by John Newbigin<br />
This program is covered by the GPL.  See copying.txt for details<br />
7,948,206,080<br />
<span style="text-decoration: underline;">7580</span>+0 records in<br />
<span style="text-decoration: underline;">7580</span>+0 records out</code><br />
The number 7,948,206,080 is the size in bytes of your memory card, the number 7580 in the last two lines is the amount of blocks copied (<em>bs=1M</em> sets the block size to 1 MiB)</li>
<li>Now insert the second memory card and run dd again, but with an additonal parameter, which makes dd append the data to the existing image file. Replace the number <span style="text-decoration: underline;">7580</span> with the block amount from the output in the previous step (<em><strong>X</strong>+0 records out</em>).<br />
<code>dd if=\?DeviceHarddisk6Partition0 of=cr5400.img bs=1M seek=<span style="text-decoration: underline;">7580</span> --size --progress</code>
</li>
<li>When this is done, you should have an image file with a size equaling to the capacity of both memory cards. Now you have to write this image onto a hard disk to access the files. I used an empty 40 GB USB hard disk. You can use any type of storage drive with enough space to write the image file. (if you have two 7 GB microSD card your backup disk must be at least 14 GB)<br />
Connect your destination device to your PC, use <em>dd &#8211;list</em> to find out its path and use dd to write the image (dont forget to replace <em>Harddisk<strong>5</strong></em> with the number you found out!):<br />
<code>dd if=cr5400.img of=?DeviceHarddisk5Partition0 bs=1M --size --progress</code>
</li>
<li>When this is done, unplug the hard disk and connect it again (or reboot if its not an USB device). You should have a volume with all your data stored on both microSD cards now!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://fabi.me/en/sonstiges/recover-data-photofast-cr-5400/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

