Custom Query (1386 matches)
Results (241 - 243 of 1386)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#164 | wontfix | Attribute table: re-arrange columns placing TYPE after NAME help to clarify meaning | ||
Description |
The most misunderstood part of the attributes is "pre-fail" and "Old_age". They are the TYPE of attribute not the current condition. I suggest that placing the TYPE column immediately after the attribute name would help this. Currently the report is: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
I suggest the arrangement should be ID# ATTRIBUTE_NAME TYPE FLAG VALUE WORST THRESH UPDATED WHEN_FAILED RAW_VALUE
Thank you all for your work on this great tool. |
|||
#13 | fixed | Autodetection doesn't work with -d sat | ||
Description |
Hi, with: DEVICESCAN -d sat -n standby -m root -M exec /usr/share/smartmontools/smartd-runner -M test I got: # smartd -d smartd 5.39 2009-08-29 r2879 [i686-pc-linux-gnu] (local build) Copyright (C) 2002-9 by Bruce Allen, http://smartmontools.sourceforge.net Opened configuration file /etc/smartd.conf Drive: DEVICESCAN, implied '-a' Directive on line 23 of file /etc/smartd.conf Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices In the system's table of devices NO devices found to scan Unable to monitor any SMART enabled devices. Try debug (-d) option. Exiting... But with: DEVICESCAN -n standby -m root -M exec /usr/share/smartmontools/smartd-runner -M test autodetection works: # smartd -d smartd 5.39 2009-08-29 r2879 [i686-pc-linux-gnu] (local build) Copyright (C) 2002-9 by Bruce Allen, http://smartmontools.sourceforge.net Opened configuration file /etc/smartd.conf Drive: DEVICESCAN, implied '-a' Directive on line 23 of file /etc/smartd.conf Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices Device: /dev/hda, opened Device: /dev/hda, packet devices [this device CD/DVD] not SMART capable Unable to register ATA device /dev/hda at line 23 of file /etc/smartd.conf Device: /dev/hdc, opened Device: /dev/hdc, packet devices [this device CD/DVD] not SMART capable Unable to register ATA device /dev/hdc at line 23 of file /etc/smartd.conf Device: /dev/sda, type changed from 'scsi' to 'sat' Device: /dev/sda [SAT], opened Device: /dev/sda [SAT], found in smartd database. Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list. Device: /dev/sdb, type changed from 'scsi' to 'sat' Device: /dev/sdb [SAT], opened Device: /dev/sdb [SAT], found in smartd database. Device: /dev/sdb [SAT], is SMART capable. Adding to "monitor" list. Monitoring 2 ATA and 0 SCSI devices Original bug report: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546566 |
|||
#1467 | fixed | Autodetection under OpenBSD assumes full SCSI for sd-Devices | ||
Description |
Under OpenBSD not only SCSI devices, but also sata devices have names like /dev/sd0. When autodetectiong such a device, smartmontools uses the full scsi commandset instead of only sat commands. One way to fix this would be to change line 592 in os_openbsd.cpp to something like this: return new openbsd_scsi_device(this, name, "", true /*scanning*/); |