<?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>s.m.a.r.t. Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/s-m-a-r-t/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:04 +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>Monitor Disk Health with S.M.A.R.T</title>
		<link>https://www.osradar.com/monitor-disk-health-with-s-m-a-r-t/</link>
					<comments>https://www.osradar.com/monitor-disk-health-with-s-m-a-r-t/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Mon, 23 Apr 2018 14:50:01 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[check disk health]]></category>
		<category><![CDATA[disk health]]></category>
		<category><![CDATA[s.m.a.r.t.]]></category>
		<category><![CDATA[smart]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2720</guid>

					<description><![CDATA[<p>Disks are one of the most important parts of the storage category. The disk health is really important. They hold numerous data – important and non-important. The OS is also installed in the system. Any issue in the disk drive can lead to serious issues like data corruption or system crash. For Linux systems, there’s [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitor-disk-health-with-s-m-a-r-t/">Monitor Disk Health with S.M.A.R.T</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Disks are one of the most important parts of the storage category. The disk health is really important. They hold numerous data – important and non-important. The OS is also installed in the system. Any issue in the disk drive can lead to serious issues like data corruption or system crash. For Linux systems, there’s an awesome daemon (helper program) available that can check out the physical drive for any issue and report to you. Thus, you can follow precautionary steps to prevent any type of potential problems in the upcoming future.</p>
<h3>What is S.M.A.R.T.?</h3>
<p>In today’s world, most of the physical hard drives (HDD and SSD) integrates a nice feature called “S.M.A.R.T.”, meaning “Self-Monitoring Analyzing and Reporting Technology”. This tech gathers valuable information about the health of the drive. By using the tool, you’ll become concerned and mark your next steps.</p>
<p>For using the technology, we will be using “smartd”.</p>
<h3>Installing smartd</h3>
<p>For installing the software, run the codes according to your Linux distro. This tool doesn’t come up by default on your system.</p>
<ul>
<li>
<h4>CentOS/RHEL/Fedora</h4>
</li>
</ul>
<p>Run this command in the terminal:</p>
<pre>sudo yum install smartmontools</pre>
<p>&nbsp;</p>
<ul>
<li>
<h4>Ubuntu + Ubuntu-based distros</h4>
</li>
</ul>
<p>If you’re running Ubuntu or other Ubuntu-based distros, use this command in the terminal:</p>
<pre>sudo apt-get install smartmontools</pre>
<h3><img loading="lazy" class="size-full wp-image-2721 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/04/install-smartd-on-ubuntu.png" alt="" width="979" height="337" srcset="https://www.osradar.com/wp-content/uploads/2018/04/install-smartd-on-ubuntu.png 979w, https://www.osradar.com/wp-content/uploads/2018/04/install-smartd-on-ubuntu-300x103.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/install-smartd-on-ubuntu-768x264.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/install-smartd-on-ubuntu-696x240.png 696w" sizes="(max-width: 979px) 100vw, 979px" /></h3>
<h3>Verifying the S.M.A.R.T. capability</h3>
<p>Before using the software, you have to ensure that your device is capable of it. Run this command in the terminal:</p>
<pre>smartctl -i /dev/sda</pre>
<p><img loading="lazy" class="size-full wp-image-2722 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/04/device-smart-capability.png" alt="" width="980" height="389" srcset="https://www.osradar.com/wp-content/uploads/2018/04/device-smart-capability.png 980w, https://www.osradar.com/wp-content/uploads/2018/04/device-smart-capability-300x119.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/device-smart-capability-768x305.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/device-smart-capability-696x276.png 696w" sizes="(max-width: 980px) 100vw, 980px" /></p>
<p>The line “SMART support is: Available – device has SMART capability” will ensure that your device is capable of S.M.A.R.T technology. “SMART support is: Enabled” means that the tech is enabled on your device.</p>
<p>If you don’t have the luck, you won’t have the SMART capability. But most likely, you won’t run into this problem unless your hardware is really old.</p>
<h3>Configuring the “smartd” for running on selective disk(s) only</h3>
<p>There is a system that you can use to configure the tool for scanning specific devices only. You can edit the “/etc/smartd.conf” file for configuring the facility. Here, I’ll be showing the example using “/dev/hda”.</p>
<pre># cat /etc/smartd.conf
/dev/hda -a -m root@localhost.localdomain ...</pre>
<p>After completing the edit, restart the daemon service.</p>
<pre># /sbin/service smartd restart
Shutting down smartd:                                      [  OK  ]
Starting smartd:                                           [  OK  ]</pre>
<p>If you want to start the process at every time during the boot, run this command:</p>
<pre>chkconfig on smartd</pre>
<p>For RHEL/CentOS, use these commands:</p>
<pre>systemctl enable smartd
systemctl start smartd</pre>
<h3>Using “smartd” for checking bad sectors or disk errors</h3>
<p>There are lots of abilities that the daemon tool can perform. Run this command to check out for any disk error or bad sector. Here, the example is “/dev/sdd”.</p>
<pre># smartctl -H /dev/sdd</pre>
<p>For learning the result(s) of the scan(s), use this command:</p>
<pre># smartctl -a /dev/sdd</pre>
<p>There are tons of other available options for advanced users. If you want to learn more about the settings of &#8220;smartd&#8221;, run this command in the terminal:</p>
<pre>man smartctl</pre>
<p>Note that your hard drive is always susceptible to bad sectors and other issues, no matter how safely you use. Enjoy your healthy hard drive!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitor-disk-health-with-s-m-a-r-t/">Monitor Disk Health with S.M.A.R.T</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/monitor-disk-health-with-s-m-a-r-t/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
