mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
8 lines
194 B
Bash
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'
|