this post was submitted on 25 May 2026
40 points (100.0% liked)
Linux Questions
3952 readers
18 users here now
Linux questions Rules (in addition of the Lemmy.zip rules)
- stay on topic
- be nice (no name calling)
- do not post long blocks of text such as logs
- do not delete your posts
- only post questions (no information posts)
Tips for giving and receiving help
- be as clear and specific
- say thank you if a solution works
- verify your solutions before posting them as facts.
Any rule violations will result in disciplinary actions
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Install smartmontools package for your distro, if it's not already installed. Then
Check your disk's name with
sudo lsblk. After that, replace your_disk with your disk's name (sda, nvme0n1 etc.) in the command below.sudo smartctl -x /dev/your_diskIf the results say PASSED, you're probably good. You can also pass the output to an LLM by the way. At least they are good at these kind of things.
I would strongly recommend not using a LLM as they are error prone
I agree though I use them as TLDR in this context and they're generally fine with that as far as I can tell. Otherwise it's a long output to check but I usually check the entire output anyway.