Created
January 2, 2025 20:20
-
-
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."
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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