SSD - smartctl - Status

5

Eu tenho um SAMSUNG SSD 830 Series SSD no meu MacBook Pro. No meu trabalho, preciso analisar enormes quantidades de dados. Eu tenho scripts php que extraem os dados, constroem planilhas csv, e o gnuplot gera centenas de gráficos. Os gráficos são navegados. Alguns relevantes são selecionados e o restante, junto com a instrução csv e gnuplot, são descartados. Isso me faz gerar entre 5 e 60 GB de dados por dia, 6 dias por semana. Então os setores SSD são reescritos muito.

Agora, usei smartctl no ssd para verificar seu status, mas não consigo entender o resultado. O SSD tem 3,5 meses de idade.

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   099   099   000    Old_age   Always       -       1672
 12 Power_Cycle_Count       0x0032   097   097   000    Old_age   Always       -       2132
177 Wear_Leveling_Count     0x0013   096   096   000    Pre-fail  Always       -       141
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   070   040   000    Old_age   Always       -       30
195 ECC_Error_Rate          0x001a   200   200   000    Old_age   Always       -       0
199 CRC_Error_Count         0x003e   253   253   000    Old_age   Always       -       0
235 POR_Recovery_Count      0x0012   099   099   000    Old_age   Always       -       1997
241 Total_LBAs_Written      0x0032   099   099   000    Old_age   Always       -       6256876130

O que significa Wear_Leveling_Count ? Eu tenho 141, mas todo mundo diz que deve ser menor que 99. O que são Airflow_Temperature_Cel e Total_LBAs_Written e POR_Recovery_Count . Quais são os melhores valores? Devo esperar uma falha tão cedo?

Além disso, meu disco rígido interal de 1 GB (substituindo a unidade óptica) diz:

192 Power-Off_Retract_Count 0x0032   099   099   000    Old_age   Always       -       1211180777512

O que há de errado com isso?

    
por PeterG 27.08.2013 / 23:22

2 respostas

2

Airflow_Temperatore_Cel é a temperatura em Celsius. Total_LBAs_Written é o número de setores gravados. O POR_Recovery_Count e o Wear_Leveling_Count parecem ser valores específicos da Samsung, então você teria que pedir detalhes, mas o VALUE / THRES para o nivelamento de desgaste aparece para indicar que você consumiu cerca de 4% da vida útil do drive. O Power-Off_Retract_Count parece ser completamente falso, já que não tem como ser tão grande assim.

    
por 28.08.2013 / 01:14
0

177 - Wear_Leveling_Count

This attribute represents the number of times a block has been erased. This value is directly related to the lifetime of the SSD. The raw value of this attribute shows the average erase cycles of total blocks.

235 - Por Recuperação Contagem

A count of the number of sudden power off cases. If there is a sudden power off, the firmware must recover all of the mapping and user data during the next power on. This is a count of the number of times this has happened.

link

    
por 07.12.2017 / 09:01