<?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>restore raspberry pi Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/restore-raspberry-pi/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 21 Jun 2018 20:43:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Backup/Restore Your Raspberry Pi System</title>
		<link>https://www.osradar.com/backup-restore-your-raspberry-pi-system/</link>
					<comments>https://www.osradar.com/backup-restore-your-raspberry-pi-system/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Sat, 24 Mar 2018 06:50:25 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[backup pi]]></category>
		<category><![CDATA[backup raspberry pi]]></category>
		<category><![CDATA[restore raspberry pi]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2260</guid>

					<description><![CDATA[<p>Raspberry Pi is one of the best SBCs (Single Board Computer) in the world. I personally love the Pi system for having such a power within just a small space. If you own one, you already know what I mean. This computer can do tons of complex works, just like a normal computer. If you [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/backup-restore-your-raspberry-pi-system/">Backup/Restore Your Raspberry Pi System</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Raspberry Pi is one of the best SBCs (Single Board Computer) in the world. I personally love the Pi system for having such a power within just a small space. If you own one, you already know what I mean. This computer can do tons of complex works, just like a normal computer.</p>
<p>If you own a Pi, you know how to use it properly, right? You need to write an SD card with the essential operating system for the Pi to operate its mechanisms. There are tons of operating systems available that are optimized for Pi systems, including major Linux distros and even Windows 10! The main disadvantage here is using the SD card, which is quite susceptible to physical and memory damage. Once corrupted, you may lose your entire Pi project and you have to start from the beginning.</p>
<h2>How to make a backup</h2>
<p>SD cards aren’t as good as other storage types as they’re more vulnerable to internal memory damages, physical damages etc. You can easily backup the entire SD card data within an image file so that in case of emergency, your data can be restored. Moreover, you can even distribute your copy of installation to others.</p>
<ul>
<li>
<h3>Windows</h3>
</li>
</ul>
<p>If you’re on Windows, it’s too easy to do. In this scenario, we have to use a tool named <a href="https://sourceforge.net/projects/win32diskimager/">Win32 Disk Imager</a>. Download and install the tool.</p>
<p>Now, connect your SD card to your PC and follow the following steps. For demonstration purpose, I’m using a USB flash drive. But don’t worry; the steps are identical to SD cards.</p>
<ul>
<li>Open Win32 Disk Imager.</li>
<li>Select your SD card.</li>
<li>Select the path to save the image file. Don’t forget to give a name.</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-2261 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-process.png" alt="" width="508" height="364" srcset="https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-process.png 508w, https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-process-300x215.png 300w" sizes="(max-width: 508px) 100vw, 508px" /></p>
<ul>
<li>Click “Read”.</li>
</ul>
<p>Now, wait patiently. Your entire SD card will be backed up in the image.</p>
<ul>
<li>
<h3>Linux</h3>
</li>
</ul>
<p>In Linux, you can use “dd” command to create an easy backup of your SD card.</p>
<ul>
<li>Connect your SD card to your PC.</li>
<li>First, we have to identify the label of SD card. Run this command:</li>
</ul>
<pre class="lang:default decode:true ">sudo fdisk -l</pre>
<p><img loading="lazy" class="size-full wp-image-2263 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label.png" alt="" width="1057" height="542" srcset="https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label.png 1057w, https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2018/03/pi-check-sd-card-label-819x420.png 819w" sizes="(max-width: 1057px) 100vw, 1057px" /></p>
<p>In this case, it’s “/dev/sdb”.</p>
<ul>
<li>Run this command:</li>
</ul>
<pre class="lang:default decode:true ">sudo dd bs=4M if=/dev/sdb | gzip &gt; ~/Desktop/image`date +%d%m%y`.gz</pre>
<p><img loading="lazy" class="size-full wp-image-2264 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-dd.png" alt="" width="1054" height="252" srcset="https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-dd.png 1054w, https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-dd-300x72.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-dd-768x184.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-dd-1024x245.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/pi-backup-dd-696x166.png 696w" sizes="(max-width: 1054px) 100vw, 1054px" /></p>
<p>You can change the path, but I’m saving it on “Desktop”.</p>
<p><img loading="lazy" class="size-full wp-image-2265 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/pi-created-image.png" alt="" width="239" height="316" srcset="https://www.osradar.com/wp-content/uploads/2018/03/pi-created-image.png 239w, https://www.osradar.com/wp-content/uploads/2018/03/pi-created-image-227x300.png 227w" sizes="(max-width: 239px) 100vw, 239px" /></p>
<p>Your Raspberry Pi SD card is now safely stored in an image file.</p>
<h2>How to restore the image</h2>
<ul>
<li>
<h3>Windows</h3>
</li>
</ul>
<p>Using the Win32 Disk Imager, you can easily restore or re-write the image file to an SD card.</p>
<ul>
<li>Open Win32 Disk Imager</li>
<li>Browse for the previously created image file.</li>
<li>Select your SD card.</li>
<li>Click “Write”.</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-2262 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-process.png" alt="" width="504" height="380" srcset="https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-process.png 504w, https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-process-300x226.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-process-80x60.png 80w" sizes="(max-width: 504px) 100vw, 504px" /></p>
<p>Done! Your Pi system is restored!</p>
<ul>
<li>
<h3>Linux</h3>
</li>
</ul>
<p>Run the following code to write your backup image on the SD card.</p>
<pre class="lang:default decode:true ">sudo gzip -dc ~/Desktop/image240318.gz | sudo dd bs=4M of=/dev/sdb</pre>
<p><img loading="lazy" class="size-full wp-image-2266 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-complete.png" alt="" width="1056" height="230" srcset="https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-complete.png 1056w, https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-complete-300x65.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-complete-768x167.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-complete-1024x223.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/pi-restore-complete-696x152.png 696w" sizes="(max-width: 1056px) 100vw, 1056px" /></p>
<p>It’s now complete!</p>
<p>Recently, Pi Project launched their latest model – Raspberry Pi 3 Model B+. <a href="https://www.osradar.com/raspberry-pi-3-model-b-released/">Check out all the new features</a>!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/backup-restore-your-raspberry-pi-system/">Backup/Restore Your Raspberry Pi System</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/backup-restore-your-raspberry-pi-system/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
