Fixed issues: - ASCII art boxes now render correctly with fixed-width layout - Corrected bay 1 mapping: ata-2 -> bay 1 (sdh SSD confirmed) - Adjusted mobo SATA port mappings based on physical verification - Simplified layout to use consistent 10-character wide bay boxes Bay 1 is confirmed to contain sdh (Crucial SSD boot drive) which maps to pci-0000:0d:00.0-ata-2, so the mapping has been corrected. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
12 lines
450 B
Bash
12 lines
450 B
Bash
#!/bin/bash
|
|
|
|
echo "=== Drive Serial Numbers ==="
|
|
for dev in sd{a..j}; do
|
|
if [ -b "/dev/$dev" ]; then
|
|
serial=$(sudo smartctl -i /dev/$dev 2>/dev/null | grep "Serial Number" | awk '{print $3}')
|
|
model=$(sudo smartctl -i /dev/$dev 2>/dev/null | grep "Device Model\|Model Number" | cut -d: -f2 | xargs)
|
|
size=$(lsblk -d -n -o SIZE /dev/$dev 2>/dev/null)
|
|
echo "/dev/$dev: $serial ($size - $model)"
|
|
fi
|
|
done
|