<?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>List Hard Drives &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/list-hard-drives/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Sun, 08 May 2011 10:49:57 +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>Linux Hard Disk Speed Tests</title>
		<link>https://lifelinux.com/linux-hard-disk-speed-tests/</link>
					<comments>https://lifelinux.com/linux-hard-disk-speed-tests/#comments</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Sun, 08 May 2011 10:35:52 +0000</pubDate>
				<category><![CDATA[File System]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[check hard disk speed]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[dd command]]></category>
		<category><![CDATA[dd command test hdd]]></category>
		<category><![CDATA[hard disk speed]]></category>
		<category><![CDATA[HDD benchmark on linux]]></category>
		<category><![CDATA[hdparm]]></category>
		<category><![CDATA[hdparm command]]></category>
		<category><![CDATA[List Hard Drives]]></category>
		<category><![CDATA[test speed hdd]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=332</guid>

					<description><![CDATA[<p>While having a large hard drive is good for storing lots of data, it is also important for your computer to have a fast hard drive. Faster hard drives help your computer run more smoothly. You can use the hdparm tool or dd command to determine your disk speeds from the Linux command line. List [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/linux-hard-disk-speed-tests/">Linux Hard Disk Speed Tests</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>While having a large hard drive is good for storing lots of data, it is also important for your computer to have a fast hard drive. Faster hard drives help your computer run more smoothly. You can use the hdparm tool or dd command to determine your disk speeds from the Linux command line.<br />
<span id="more-332"></span></p>
<h3>List Hard Drives</h3>
<p>Open a terminal or go to a command line on your Linux system. As root, run the command:</p>
<pre>
[root@server2 ~]# fdisk -l
</pre>
<p>Sample outputs:</p>
<pre>
Disk /dev/sda: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      104391   83  Linux
/dev/sda2              14         274     2096482+  83  Linux
/dev/sda3             275         535     2096482+  82  Linux swap / Solaris
/dev/sda4             536       30400   239890612+   5  Extended
/dev/sda5             536       30400   239890581   83  Linux

Disk /dev/sdb: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *           1          13      104391   83  Linux
/dev/sdb2              14         274     2096482+  83  Linux
/dev/sdb3             275         535     2096482+  82  Linux swap / Solaris
/dev/sdb4             536       30400   239890612+   5  Extended
/dev/sdb5             536       30400   239890581   83  Linux
</pre>
<h3>hdparm command</h3>
<p>You can use the <strong>hdparm command</strong> to check hard disk speed. It provides a command line interface to various hard disk ioctls supported by the stock Linux ATA/IDE/SATA device driver subsystem. Login as the root and enter the following command:</p>
<pre>
[root@server2 ~]# hdparm -tT /dev/sda
</pre>
<p>Sample outputs:</p>
<pre>
/dev/sda:
 Timing cached reads:   29084 MB in  2.00 seconds = 14574.71 MB/sec
 Timing buffered disk reads:  308 MB in  3.01 seconds = 102.36 MB/sec
</pre>
<p><strong>Note:</strong><br />
-t :perform device read timings<br />
-T :perform cache read timings<br />
/dev/sda : Hard disk device file</p>
<h3>dd Command</h3>
<p>You can use the <strong>dd command</strong> as follows to get speed info too:</p>
<pre>
[root@server2 ~]# dd if=/dev/zero of=/tmp/test.img bs=8k count=256k
[root@server2 ~]# rm /tmp/test.img
</pre>
<p>Sample outputs:</p>
<pre>
dd: writing `/tmp/test.img': No space left on device
210779+0 records in
210778+0 records out
1726697472 bytes (1.7 GB) copied, 22.3398 seconds, 77.3 MB/s
</pre>
<g:plusone href="https://lifelinux.com/linux-hard-disk-speed-tests/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/linux-hard-disk-speed-tests/">Linux Hard Disk Speed Tests</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/linux-hard-disk-speed-tests/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
