Charles Curley wrote: > On Thu, 13 Jul 2023 13:41:35 +0800 > jeremy ardley <jeremy.ard...@gmail.com> wrote: > > > In my personal experience, I ran a 500GB WD NVME drive on my > > workstation without a swap partition and no surveillance. After 3 > > years It had worn it down 30%. Not a drama as I was swapping it out, > > but surprising for just a workstation. > > Interesting. Is there any way to tell the wear on an SSD, so one can > replace it in a timely manner?
Yes, though it varies by particular disks. smartctl -a /dev/whatever produces SMART data which may include things like: 233 Media_Wearout_Indicator 0x0032 002 002 000 Old_age Always - 0 or 241 Total_LBAs_Written 0x0032 099 099 000 Old_age Always - 7395041209 or 177 Wear_Leveling_Count 0x0013 099 099 000 Pre-fail Always - 4 Each of which tells you relevant things without being perfect predictors. -dsr-