Custom Query (1406 matches)
Results (265 - 267 of 1406)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1824 | wontfix | Change the capability name of "Offline surface scan" to "Off-line Read Scanning" | ||
Description |
This is listed in the capabilities section when using smartctl --capabilities command. It is called Off-line Read Scanning in this draft of ACS-3, page 264, Table 133, Bit 3: https://people.freebsd.org/~imp/asiabsdcon2015/works/d2161r5-ATAATAPI_Command_Set_-_3.pdf And I can find a few manuals of drives that use the name Off-line Read Scanning: https://documents.westerndigital.com/content/dam/doc-library/en_us/assets/public/western-digital/product/data-center-drives/ultrastar-dc-hc500-series/product-manual-ultrastar-dc-hc550-sata-oem-spec.pdf page 306, 12.53.2.6 Off-Line Data Collection Capability, Bit 3 https://ia804502.us.archive.org/14/items/manualzilla-id-7035037/7035037.pdf page 149, 14.39.2.7 Off-Line Data Collection Capability, Bit 3 http://datasheet.elcodis.com/pdf2/99/55/995536/mmdoe28gxmsp-0va.pdf page 27, 7.3.2.7 Off-line data collection capability, Bit 3 Using the same name as these documents will make searching for information easier. |
|||
#84 | fixed | Charts of various SMART attributes, scripts included | ||
Description |
Hi, I used the appended awk und gnuplot scripts to generate various charts for an SSD with Indilinx controller. What was done? I added: FILENAME=/tmp/smartctl_`date -u +%Y%m%d_%H%M`.txt smartctl -a /dev/sda >$FILENAME gzip $FILENAME to /etc/cron.hourly/smartctl Then I passed the hourly generated files through an awk script: zcat /tmp/smartctl_20*.txt.gz | awk -f sm.awk >sm.dat And processed the resulting sm.dat with gnuplot gnuplot sm.gnuplot (not a generic solution, just one that works for me) Greetings, Frieder |
|||
#34 | fixed | Check error count from Extended Comprehensive SMART error log | ||
Description |
Some recent (e.g. Samsung) drives report errors only in the Extended Comprehensive SMART error log. The Summary SMART error log can be read but is always empty. In this case, smartd ('-l error' directive) will never report an error. Smartd should check the error counters from both error logs. |