Skip to content

Instantly share code, notes, and snippets.

@mortn
Last active February 5, 2022 10:35
Show Gist options
  • Save mortn/5cb63e3729fa66f06e082d7d7c19ac4a to your computer and use it in GitHub Desktop.
Save mortn/5cb63e3729fa66f06e082d7d7c19ac4a to your computer and use it in GitHub Desktop.
Get SMART errors on all physical disks (ignore LVM)
lsblk -io NAME,TYPE|awk '$2=="disk"{print $1}'|while read D;do printf "# $D %.s" {1..10} && smartctl -l error /dev/$D;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment