<?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>Linux下的dd命令使用详解 &#8211; moneyslow.com</title>
	<atom:link href="https://moneyslow.com/tag/linux%e4%b8%8b%e7%9a%84dd%e5%91%bd%e4%bb%a4%e4%bd%bf%e7%94%a8%e8%af%a6%e8%a7%a3/feed" rel="self" type="application/rss+xml" />
	<link>https://moneyslow.com</link>
	<description>making money with technology</description>
	<lastBuildDate>Thu, 05 Mar 2020 22:28:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
	<item>
		<title>Linux下的dd命令使用详解dd if=/dev/zero of=</title>
		<link>https://moneyslow.com/linux%e4%b8%8b%e7%9a%84dd%e5%91%bd%e4%bb%a4%e4%bd%bf%e7%94%a8%e8%af%a6%e8%a7%a3dd-if-dev-zero-of.html</link>
		
		<dc:creator><![CDATA[moneyslow]]></dc:creator>
		<pubDate>Thu, 05 Mar 2020 22:28:30 +0000</pubDate>
				<category><![CDATA[newest]]></category>
		<category><![CDATA[Linux下的dd命令使用详解]]></category>
		<guid isPermaLink="false">https://moneyslow.com/?p=10981</guid>

					<description><![CDATA[1.将本地的/dev/hdb整盘备份到/dev/hdd
#dd if=/dev/hdb of=/dev/hdd
2.将/dev/hdb全盘数据备份到指定路径的image文件
#dd if=/dev/hdb of=/root/image
3.将备份文件恢复到指定盘
#dd if=/root/image of=/dev/hdb
4.备份/dev/hdb全盘数据，并利用gzip工具进行压缩，保存到指定路径
#dd if=/dev/hdb &#124; gzip > /root/image.gz
5.将压缩的备份文件恢复到指定盘
#gzip -dc /root/image.gz &#124; dd of=/dev/hdb
6.备份与恢复MBR
备份磁盘开始的512个字节大小的MBR信息到指定文件：
#dd if=/dev/hda of=/root/image count=1 bs=512
   count=1指仅拷贝一个块；bs=512指块大小为512个字节。]]></description>
		
		
		
			</item>
	</channel>
</rss>
