Skip to content

Instantly share code, notes, and snippets.

@beci
Created January 2, 2025 20:20
Show Gist options
  • Save beci/8929317db92342fbee88a0d83ffdc494 to your computer and use it in GitHub Desktop.
Save beci/8929317db92342fbee88a0d83ffdc494 to your computer and use it in GitHub Desktop.
Inspect ZFS pool devices and list their associated PARTUUIDs, models, serial numbers, and capacities."
#!/usr/bin/env bash
zpool status -P | grep -o '/dev/disk/by-partuuid/[a-f0-9\-]*' | while read -r partuuid; do
parent_dev=$(lsblk -no PKNAME $(readlink -f "$partuuid")) # Need the parent dev of uuid
disk_info=$(lsblk -ndo MODEL,SERIAL,SIZE "/dev/$parent_dev") # Needed fields only
printf "PARTUUID: %s\n%s\n" "$(basename $partuuid)" "$disk_info"
echo "----------------------"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment