如何解释三星SSD的Wear_Leveling_Count超过100?

2025-07-09 05:32:36      世界杯巴西克罗地亚

标签列表如何解释三星SSD的Wear_Leveling_Count超过100?hard-drivessdsmartctl5我有一块三星840 Pro固态硬盘,它已经在一个MySQL数据库服务器上工作了一段时间。最近我感觉它变得很慢,所以我用smartctl进行了测试。

#smartctl -a /dev/sda

smartctl 6.4 2014-10-07 r4002 [x86_64-linux-3.16.0-4-amd64] (local build)

Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===

Model Family: Samsung based SSDs

Device Model: Samsung SSD 840 PRO Series

Serial Number: S1AXNSAF210103T

LU WWN Device Id: 5 002538 5a01db814

Firmware Version: DXM05B0Q

User Capacity: 512,110,190,592 bytes [512 GB]

Sector Size: 512 bytes logical/physical

Rotation Rate: Solid State Device

Device is: In smartctl database [for details use: -P show]

ATA Version is: ACS-2, ATA8-ACS T13/1699-D revision 4c

SATA Version is: SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s)

Local Time is: Fri Mar 27 00:25:00 2020 EDT

SMART support is: Available - device has SMART capability.

SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===

SMART overall-health self-assessment test result: PASSED

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: (53956) seconds.

Offline data collection

capabilities: (0x53) SMART execute Offline immediate.

Auto Offline data collection on/off support.

Suspend Offline collection upon new

command.

No Offline surface scan supported.

Self-test supported.

No Conveyance Self-test supported.

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: ( 35) minutes.

SCT capabilities: (0x003d) SCT Status supported.

SCT Error Recovery Control supported.

SCT Feature Control supported.

SCT Data Table supported.

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

5 Reallocated_Sector_Ct 0x0033 100 100 010 Pre-fail Always - 0

9 Power_On_Hours 0x0032 092 092 000 Old_age Always - 35740

12 Power_Cycle_Count 0x0032 099 099 000 Old_age Always - 18

177 Wear_Leveling_Count 0x0013 085 085 000 Pre-fail Always - 522

179 Used_Rsvd_Blk_Cnt_Tot 0x0013 100 100 010 Pre-fail Always - 0

181 Program_Fail_Cnt_Total 0x0032 100 100 010 Old_age Always - 0

182 Erase_Fail_Count_Total 0x0032 100 100 010 Old_age Always - 0

183 Runtime_Bad_Block 0x0013 100 100 010 Pre-fail Always - 0

187 Uncorrectable_Error_Cnt 0x0032 100 100 000 Old_age Always - 0

190 Airflow_Temperature_Cel 0x0032 073 057 000 Old_age Always - 27

195 ECC_Error_Rate 0x001a 200 200 000 Old_age Always - 0

199 CRC_Error_Count 0x003e 100 100 000 Old_age Always - 0

235 POR_Recovery_Count 0x0012 099 099 000 Old_age Always - 12

241 Total_LBAs_Written 0x0032 099 099 000 Old_age Always - 25524754306

SMART Error Log Version: 1

No Errors Logged

SMART Self-test log structure revision number 1

Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error

# 1 Short offline Completed without error 00% 35740 -

SMART Selective self-test log data structure revision number 1

SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS

1 0 0 Not_testing

2 0 0 Not_testing

3 0 0 Not_testing

4 0 0 Not_testing

5 0 0 Not_testing

255 0 65535 Read_scanning was never started

Selective self-test flags (0x0):

After scanning selected spans, do NOT read-scan remainder of disk.

If Selective self-test is pending on power-up, resume after 0 minute delay.

奇怪的是,Wear_Leveling_Count的值为522。但我读到过它应该从100开始,并随着磁盘的磨损逐渐接近0。

所以我想知道如何解释这个数字?是否有更可靠的方法来检查磁盘的健康状况?

- Milkyway21你可能想要先更新你的 smartctl 版本。"2019-12-30: 我们发布了 Smartmontools 的 7.1 版本。"https://www.smartmontools.org/ 如果你还没有看到,这里是文档链接:https://www.smartmontools.org/wiki/TocDoc 希望这可以帮助到你。 - vssher2840的保修期为3年,PRO版本的TBW为73TB。你已经使用了4年并且超过了10TBW。你可以考虑更换硬盘,或者持续监控它是否出现更严重的故障指标,比如重新分配扇区。从损坏的块中恢复数据库是一件很麻烦的事情,所以更换硬盘可能是最便宜的选择。 - Nemo1个回答4每个SMART属性都有两个值:原始值和标准化值(也称为当前值)。在`smartctl -a`的输出中,标准化值在标题为`VALUE`的列下报告,而原始值在标题为`RAW_VALUE`的列下报告(请参阅man页面)。

对于`Wear_Leveling_Count`属性(ID#177),标准化值以百分比估计剩余寿命,在您的输出中为085或85%。(522的原始值对用户来说不太有用,因为它是一个特定于驱动器的数字,表示平均每个块的程序擦除循环总数。)

所以您的驱动器估计还有85%的剩余寿命。

更多信息请参见this thread。不幸的是,大量的帖子未能正确区分和解释这两个字段(标准化和原始值),导致了极大的困惑!

- GDGP1这意味着我的苹果SSD已经达到了192%,除非我需要先减去“THRESH”,在我这里是100。SMART数据很奇怪。 - undefined回答链接相关问题11 如何更新三星SSD固件?© 2023 根据CC BY-SA 4.0 许可证授权京ICP备19056307号-1

淄博到济南需要多长时间能到 淄博到济南坐汽车最快的车要多长时间?
重疊詞:使用好處,種類,AA類,AAB類,ABB類,AABB類,AABC類,ABC