Custom Query (1417 matches)
Results (178 - 180 of 1417)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1163 | duplicate | Transcend MTS800 (TS256GMTS800) | ||
Description |
Attributes 160-169 don't seem to be in the database. Based on some googling it seems the attributes are the same as the values for some other transcend ssds. root@debian:~# /usr/sbin/smartctl -A /dev/sdb smartctl 6.6 2016-05-31 r4324 [x86_64-linux-4.9.0-5-amd64] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Attributes Data Structure revision number: 1 Vendor Specific SMART Attributes with Thresholds: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE 1 Raw_Read_Error_Rate 0x0000 100 100 000 Old_age Offline - 0 5 Reallocated_Sector_Ct 0x0000 100 100 000 Old_age Offline - 0 9 Power_On_Hours 0x0000 100 100 000 Old_age Offline - 13711 12 Power_Cycle_Count 0x0000 100 100 000 Old_age Offline - 77 160 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 0 161 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 43 163 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 26 164 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 31697 165 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 85 166 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 0 167 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 31 168 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 3000 169 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 99 175 Program_Fail_Count_Chip 0x0000 100 100 000 Old_age Offline - 0 176 Erase_Fail_Count_Chip 0x0000 100 100 000 Old_age Offline - 0 177 Wear_Leveling_Count 0x0000 100 100 050 Old_age Offline - 0 178 Used_Rsvd_Blk_Cnt_Chip 0x0000 100 100 000 Old_age Offline - 0 181 Program_Fail_Cnt_Total 0x0000 100 100 000 Old_age Offline - 0 182 Erase_Fail_Count_Total 0x0000 100 100 000 Old_age Offline - 0 192 Power-Off_Retract_Count 0x0000 100 100 000 Old_age Offline - 49 194 Temperature_Celsius 0x0000 100 100 000 Old_age Offline - 33 195 Hardware_ECC_Recovered 0x0000 100 100 000 Old_age Offline - 194 196 Reallocated_Event_Count 0x0000 100 100 016 Old_age Offline - 0 197 Current_Pending_Sector 0x0000 100 100 000 Old_age Offline - 0 198 Offline_Uncorrectable 0x0000 100 100 000 Old_age Offline - 0 199 UDMA_CRC_Error_Count 0x0000 100 100 050 Old_age Offline - 0 232 Available_Reservd_Space 0x0000 100 100 000 Old_age Offline - 100 241 Total_LBAs_Written 0x0000 100 100 000 Old_age Offline - 180500 242 Total_LBAs_Read 0x0000 100 100 000 Old_age Offline - 160835 245 Unknown_Attribute 0x0000 100 100 000 Old_age Offline - 253576 The following patch is all that would be necessary. # diff drivedb.h drivedb.h.new 1555a1556,1568 > { "Transcend MTS800", > "TS(64|128|256|512|1T)GMTS800", // tested with TS256GMTS800 only > "", "", > "-v 160,raw48,Uncorrectable_Error_Cnt " > "-v 161,raw48,Valid_Spare_Block_Cnt " > "-v 163,raw48,Initial_Bad_Block_Count " > "-v 164,raw48,Total_Erase_Count " > "-v 165,raw48,Max_Erase_Count " > "-v 166,raw48,Min_Erase_Count " > "-v 167,raw48,Average_Erase_Count " > "-v 168,raw48,Max_Erase_Count_of_Spec " > "-v 169,raw48,Remaining_Lifetime_Perc " > }, With patch applied: root@debian:~/smartmontools-RELEASE_6_6/smartmontools# /usr/local/sbin/smartctl -A /dev/sdb smartctl 6.6 (build date Feb 4 2019) [x86_64-linux-4.9.0-5-amd64] (local build) Copyright (C) 2002-17, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Attributes Data Structure revision number: 1 Vendor Specific SMART Attributes with Thresholds: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE 1 Raw_Read_Error_Rate 0x0000 100 100 000 Old_age Offline - 0 5 Reallocated_Sector_Ct 0x0000 100 100 000 Old_age Offline - 0 9 Power_On_Hours 0x0000 100 100 000 Old_age Offline - 13711 12 Power_Cycle_Count 0x0000 100 100 000 Old_age Offline - 77 160 Uncorrectable_Error_Cnt 0x0000 100 100 000 Old_age Offline - 0 161 Valid_Spare_Block_Cnt 0x0000 100 100 000 Old_age Offline - 43 163 Initial_Bad_Block_Count 0x0000 100 100 000 Old_age Offline - 26 164 Total_Erase_Count 0x0000 100 100 000 Old_age Offline - 31697 165 Max_Erase_Count 0x0000 100 100 000 Old_age Offline - 85 166 Min_Erase_Count 0x0000 100 100 000 Old_age Offline - 0 167 Average_Erase_Count 0x0000 100 100 000 Old_age Offline - 31 168 Max_Erase_Count_of_Spec 0x0000 100 100 000 Old_age Offline - 3000 169 Remaining_Lifetime_Perc 0x0000 100 100 000 Old_age Offline - 99 175 Program_Fail_Count_Chip 0x0000 100 100 000 Old_age Offline - 0 176 Erase_Fail_Count_Chip 0x0000 100 100 000 Old_age Offline - 0 177 Wear_Leveling_Count 0x0000 100 100 050 Old_age Offline - 0 178 Runtime_Invalid_Blk_Cnt 0x0000 100 100 000 Old_age Offline - 0 181 Program_Fail_Cnt_Total 0x0000 100 100 000 Old_age Offline - 0 182 Erase_Fail_Count_Total 0x0000 100 100 000 Old_age Offline - 0 192 Power-Off_Retract_Count 0x0000 100 100 000 Old_age Offline - 49 194 Temperature_Celsius 0x0000 100 100 000 Old_age Offline - 33 195 Hardware_ECC_Recovered 0x0000 100 100 000 Old_age Offline - 194 196 Reallocated_Event_Count 0x0000 100 100 016 Old_age Offline - 0 197 Current_Pending_Sector 0x0000 100 100 000 Old_age Offline - 0 198 Offline_Uncorrectable 0x0000 100 100 000 Old_age Offline - 0 199 UDMA_CRC_Error_Count 0x0000 100 100 050 Old_age Offline - 0 232 Available_Reservd_Space 0x0000 100 100 000 Old_age Offline - 100 241 Host_Writes_32MiB 0x0000 100 100 000 Old_age Offline - 180500 242 Host_Reads_32MiB 0x0000 100 100 000 Old_age Offline - 160835 245 TLC_Writes_32MiB 0x0000 100 100 000 Old_age Offline - 253576 I am not sure how to verify the attributes names. Hopefully, someone else can either verify or tell me what needs to be done. |
|||
#1166 | duplicate | not in drivedb.h: SanDisk Ultra 3D (SanDisk SDSSDH3500G) | ||
#1169 | duplicate | Drive Support - WDC WDS200T2B0A-00SM50 | ||
Description |
I can see the following drive isn't yet in the smartctl database for smartctl 7.0 2018-12-30 r4883. I've included output below. [root@host:/root/smartmontools-7.0]# smartctl -d megaraid,20 /dev/sda -a smartctl 7.0 2018-12-30 r4883 [x86_64-linux-3.10.0-693.21.1.el7.x86_64] (local build) Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org === START OF INFORMATION SECTION === Device Model: WDC WDS200T2B0A-00SM50 Serial Number: 174901800006 LU WWN Device Id: 5 001b44 8b6844df6 Firmware Version: X61130WD User Capacity: 2,000,398,934,016 bytes [2.00 TB] Sector Size: 512 bytes logical/physical Rotation Rate: Solid State Device Form Factor: 2.5 inches Device is: Not in smartctl database [for details use: -P showall] ATA Version is: ACS-4 T13/BSR INCITS 529 revision 5 SATA Version is: SATA 3.3, 6.0 Gb/s (current: 6.0 Gb/s) Local Time is: Thu Mar 7 10:17:53 2019 PST SMART support is: Available - device has SMART capability. SMART support is: Enabled === START OF READ SMART DATA SECTION === SMART Status not supported: ATA return descriptor not supported by controller firmware SMART overall-health self-assessment test result: PASSED Warning: This result is based on an Attribute check. General SMART Values: Offline data collection status: (0x00) Offline data collection activity was never started. Auto Offline Data Collection: Disabled. Self-test execution status: ( 0) The previous self-test routine completed without error or no self-test has ever been run. Total time to complete Offline data collection: ( 0) seconds. Offline data collection capabilities: (0x11) SMART execute Offline immediate. No Auto Offline data collection support. Suspend Offline collection upon new command. No Offline surface scan supported. Self-test supported. No Conveyance Self-test supported. No Selective Self-test supported. SMART capabilities: (0x0003) Saves SMART data before entering power-saving mode. Supports SMART auto save timer. Error logging capability: (0x01) Error logging supported. General Purpose Logging supported. Short self-test routine recommended polling time: ( 2) minutes. Extended self-test routine recommended polling time: ( 10) minutes. SMART Attributes Data Structure revision number: 4 Vendor Specific SMART Attributes with Thresholds: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE 5 Reallocated_Sector_Ct 0x0032 100 100 --- Old_age Always - 0 9 Power_On_Hours 0x0032 100 100 --- Old_age Always - 8754 12 Power_Cycle_Count 0x0032 100 100 --- Old_age Always - 35 165 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 77005621 166 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 1 167 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 39 168 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 49 169 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 1237 170 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 0 171 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 0 172 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 0 173 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 18 174 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 22 184 End-to-End_Error 0x0032 100 100 --- Old_age Always - 0 187 Reported_Uncorrect 0x0032 100 100 --- Old_age Always - 0 188 Command_Timeout 0x0032 100 100 --- Old_age Always - 0 194 Temperature_Celsius 0x0022 076 037 --- Old_age Always - 24 (Min/Max 18/37) 199 UDMA_CRC_Error_Count 0x0032 100 100 --- Old_age Always - 0 230 Unknown_SSD_Attribute 0x0032 100 100 --- Old_age Always - 1374411555152 232 Available_Reservd_Space 0x0033 100 100 004 Pre-fail Always - 100 233 Media_Wearout_Indicator 0x0032 100 100 --- Old_age Always - 37803 234 Unknown_Attribute 0x0032 100 100 --- Old_age Always - 39878 241 Total_LBAs_Written 0x0030 253 253 --- Old_age Offline - 21669 242 Total_LBAs_Read 0x0030 253 253 --- Old_age Offline - 253116 244 Unknown_Attribute 0x0032 000 100 --- Old_age Always - 0 SMART Error Log Version: 1 No Errors Logged SMART Self-test log structure revision number 1 No self-tests have been logged. [To run self-tests, use: smartctl -t] Selective Self-tests/Logging not supported |
Note:
See TracQuery
for help on using queries.