Files
oam/snippets/filesystems.sh
2024-09-22 21:15:45 +02:00

8 lines
194 B
Bash

#!/usr/bin/env sh
# Get the *sector* size of partitions in 512-byte sectors
sudo blockdev --getsz '/dev/nvme0n1p1'
# Get the *block* size of partitions
sudo blockdev --getbsz '/dev/nvme0n1p1'