<?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>io speed test &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/io-speed-test/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Tue, 11 Aug 2015 06:56:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>How To Test Disk I/O Performance With dd Command</title>
		<link>https://lifelinux.com/how-to-test-disk-io-performance-with-dd-command/</link>
					<comments>https://lifelinux.com/how-to-test-disk-io-performance-with-dd-command/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 11 Aug 2015 06:56:12 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[dd command]]></category>
		<category><![CDATA[io speed test]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1963</guid>

					<description><![CDATA[<p>How do I check the performance of a hard drive including the read and write speed on a Linux operating systems? dd command dd is a command-line utility for Unix and Unix-like operating systems whose primary purpose is to convert and copy files. In this tutorial I will show you how to use the dd [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-test-disk-io-performance-with-dd-command/">How To Test Disk I/O Performance With dd Command</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>How do I check the performance of a hard drive including the read and write speed on a Linux operating systems?<span id="more-1963"></span></p>
<h2>dd command</h2>
<p>dd is a command-line utility for Unix and Unix-like operating systems whose primary purpose is to convert and copy files.</p>
<p>In this tutorial I will show you how to use the dd command to test disk I/O performance.</p>
<p>Open a shell prompt or login to a remote server via ssh and type the following command</p>
<pre># dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync
</pre>
<p>Sample outputs</p>
<pre>16384+0 records in
16384+0 records out
1073741824 bytes (1.1 GB) copied, 5.00633 s, 214 MB/s
</pre>
<p>Test on device</p>
<pre>ATA device, with non-removable media
	Model Number:       SAMSUNG MZ7WD120HCFV-00003              
	Serial Number:      S1FZNYAG402762      
	Firmware Revision:  DXM9203Q
	Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0
</pre>
<h2>Understanding dd command options</h2>
<p><strong>if=/dev/zero:</strong> The name of the input file you want dd the read from.<br />
<strong>of=test:</strong> The name of the output file you want dd write the input file to.<br />
<strong>bs=64k</strong> (block-size) : Set the size of the block you want dd to use.<br />
<strong>count=16k</strong> (number of blocks): The number of blocks you want dd to read.<br />
<strong>conv=fdatasync</strong>: The flag conv=fdatasync tells dd to sync the write to disk before it exits. Without this flag, dd will perform the write but some of it will remain in memory, not giving you an accurate picture of the true write performance of the disk.</p>
<g:plusone href="https://lifelinux.com/how-to-test-disk-io-performance-with-dd-command/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-test-disk-io-performance-with-dd-command/">How To Test Disk I/O Performance With dd Command</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-test-disk-io-performance-with-dd-command/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
