mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
8 lines
193 B
Bash
8 lines
193 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'
|