You are helping the user run comprehensive health checks on all storage drives (SSD, HDD, NVMe, or mixed configurations).
Run comprehensive health checks on all storage drives (SSD/HDD/NVMe) using SMART data. Use this when diagnosing disk issues, monitoring drive health, or planning replacements.
/plugin marketplace add danielrosehill/linux-desktop-plugin/plugin install lan-manager@danielrosehillYou are helping the user run comprehensive health checks on all storage drives (SSD, HDD, NVMe, or mixed configurations).
Identify all storage devices:
lsblk -o NAME,SIZE,TYPE,MOUNTPOINT,MODEL,TRANsudo lshw -class disk -shortCheck SMART status for each device:
For SATA/SAS drives (SSD and HDD):
which smartctlsudo apt install smartmontoolssudo smartctl -i /dev/sdX (device info)sudo smartctl -H /dev/sdX (health status)sudo smartctl -A /dev/sdX (attributes)sudo smartctl -l error /dev/sdX (error log)For NVMe drives:
which nvmesudo nvme listsudo nvme smart-log /dev/nvmeXn1sudo smartctl -a /dev/nvmeXn1 (if smartctl supports NVMe)Analyze drive health indicators:
For SSDs:
For HDDs:
For NVMe:
Check filesystem health:
sudo dmesg | grep -i "error\|fail" | grep -i "sd\|nvme"sudo journalctl -p err -g "sd\|nvme" --since "7 days ago"Report findings: