Changes between Version 19 and Version 20 of LSIFusionMPT


Ignore:
Timestamp:
02/23/12 00:01:00 (12 years ago)
Author:
Adam Cécile
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LSIFusionMPT

    v19 v20  
    181181}}}
    182182
     183== 3.3. S.M.A.R.T and such ==
     184
     185Disks' SMART can be monitored trough an SCSI generic device.
     186
     187You need to make sure SCSI generic device driver is loaded (and will be loaded at boot). On Debian based system, simply run:
     188{{{
     189modprobe sg
     190echo sg >> /etc/modules
     191}}}
     192
     193You can now try to run smartctl against one of the scsi generic devices (you will have to figure out by yourself which one to use):
     194{{{
     195server:~# smartctl -a /dev/sg1
     196smartctl version 5.38 [i686-pc-linux-gnu] Copyright (C) 2002-8 Bruce Allen
     197Home page is http://smartmontools.sourceforge.net/
     198
     199Device: SEAGATE  ST3600057SS      Version: ES64
     200Serial number: 6SL0D4C3
     201Device type: disk
     202Transport protocol: SAS
     203Local Time is: Wed Feb 22 23:57:28 2012 CET
     204Device supports SMART and is Enabled
     205Temperature Warning Disabled or Not Supported
     206SMART Health Status: OK
     207
     208Current Drive Temperature:     32 C
     209Drive Trip Temperature:        68 C
     210
     211[...]
     212}}}
     213
     214You can now edit '''/etc/smartd.conf''' and comment the "DEVICESCAN" line and add specific configuration for each drive, like the example below:
     215{{{
     216# Monitor LSI's disk SMART through SCSI generic
     217/dev/sg1 -d removable -a -s L/../../3/02
     218/dev/sg2 -d removable -a -s L/../../3/03
     219}}}
     220
     221Restart smartd and check syslog...
     222{{{
     223Feb 23 00:00:00 server smartd[29653]: Device: /dev/sg1, opened
     224Feb 23 00:00:00 server smartd[29653]: Device: /dev/sg1, is SMART capable. Adding to "monitor" list.
     225Feb 23 00:00:00 server smartd[29653]: Device: /dev/sg2, opened
     226Feb 23 00:00:01 server smartd[29653]: Device: /dev/sg2, is SMART capable. Adding to "monitor" list.
     227Feb 23 00:00:01 server smartd[29653]: Monitoring 0 ATA and 2 SCSI devices
     228}}}
     229
    183230[[BR]]
    184231= 4. BIOS upgrade from a Linux system =