个人工具

UbuntuHelp:Smartmontools

来自Ubuntu中文

Wikibot讨论 | 贡献2008年10月20日 (一) 00:37的版本

跳转至: 导航, 搜索


This how to will help you to configure Smartmontools to do actions as shut down the computer or send an e-mail when the disk is going to fail.

Prerequisites

  • A modern hard disk S.M.A.R.T. capable

Installation

First of all, we have to install Smartmontools package. Install the smartmontools package in the Synaptic Package Manager. See SynapticHowto. To display all the SMART information for an IDE drive, run

sudo smartctl -a /dev/hda

To display all the SMART information for a SATA drive, run

sudo smartctl -a -d ata /dev/sda

Note: This also works for IDE drives in new kernels that are being run through the SCSI stack and show up as /dev/sdX


Now we have to edit some files. Open the file /etc/default/smartmontools with your favourite text editor, for example, vim: sudo vim /etc/default/smartmontools an uncomment the line start_smartd=yes Then, we are going to edit the daemon configuration. Again, use your favourite text editor to open the file /etc/smartd.conf. Comment out the line that contains DEVICESCAN, by adding # in the beginning of the line. Then, add this to the end of the file:

/dev/hda \
-H \
-l error -l selftest \
-s (O/../../5/11|L/../../5/13|C/../../5/15) \
-m ThisIsNotUsed -M exec /usr/local/bin/smartd.sh

You must replace /dev/hda with the name of the device which you'd like to be monitored. With this, the daemon will check the disk from time to time, and will execute /usr/local/bin/smartd.sh if any error is encountered. Now, we are going to make the script which is going to shut down the computer. Create a text file called smartd.sh in /usr/local/bin/ (you could use the command sudo vim /usr/local/bin/smartd.sh to do so) and add the following to the file:

#!/bin/bash
LOGFILE="/var/log/smartd.log"
echo -e "$(date)\n$SMARTD_MESSAGE\n" >> "$LOGFILE"
mail admin[at]alcalleop[dot]net < $LOGFILE
sleep 40s
shutdown -h now

This will send the log file by e-mail to admin[at]alcalleop[dot]net, wait 40 seconds and then will shut down the computer. You can customize the script to change what the computer will do in a case of disk error. For example, perhaps you do not want the computer to shut down. Now, it is time to start the daemon: sudo /etc/init.d/smartmontools start If you want to test all of this, add -M test after -M exec /usr/local/bin/smartd.sh and restart the daemon. This will force daemon to execute the script immediately. Now, every time the computer is turned on, the script will shut down the computer, so you will have to start the computer in recovery mode and remove -M test option of /etc/smartd.conf file. Based on Gentoo Wiki: HOWTO Monitor your hard disk(s)withsmartmontools.


Before running this, be sure to check that you have a "mail" command, and do a test first to your address. On my default Fiesty: jim@beorn:~$ mail The program 'mail' can be found in the following packages:

  • mailx
  • mailutils

Try: sudo apt-get install <selected package> Make sure you have the 'universe' component enabled bash: mail: command not found


Note: Following the Gentoo Wiki i made a modified script which checks all the disk in /dev/disk/by-id/ Just use the command

sh smart.sh short|long|offline

The script make a directory smart-logs and stores all the files there.

#!/bin/sh

# Script by Meliorator. irc://irc.freenode.net/Meliorator
# modified by Ranpha
[ ! "$@" ] && echo "Usage: $0 type [type] [type]"

[ ! -e smart-logs ] && mkdir smart-logs
[ ! -d smart-logs ] && Can not create smart-logs dir && exit 1

a=0

for t in "$@"; do

        case "$t" in
                offline)  l=error;;
                short|long)  l=selftest;;
                *) echo $t is an unrecognised test type. Skipping... && continue
        esac

       for hd in  /dev/disk/by-id/ata*; do
                r=$(( $(smartctl -t $t -d ata $hd | grep 'Please wait' | awk '{print $3}') ))
                echo Check $hd - $t test in $r minutes
                [ $r -gt $a ] && a=$r
       done
     echo "Waiting $a minutes for all tests to complete"
		sleep $(($a)) m

	for hd in /dev/disk/by-id/ata*; do
                smartctl -l $l -d ata $hd 2>&1 >> smart-logs/smart-${t}-${hd##*/}.log
        done

	
done

for i in {1..10}; do
        sleep .01
        echo -n -e \\a
done

echo "All tests have completed"