Base: Add man page for blockdev utility

This commit is contained in:
David Isaksson 2021-10-09 10:23:45 +02:00 committed by Andreas Kling
commit 7269ce15fc
Notes: sideshowbarker 2024-07-18 02:53:56 +09:00

View file

@ -0,0 +1,30 @@
## Name
blockdev - query block devices
## Synopsis
```**sh
$ blockdev [options] <device>
```
## Description
The `blockdev` command call ioctls on the given block device.
## Options
* `-s`, `--size`: Get disk size in bytes
* `-b`, `--block-size`: Get block size in bytes
## Examples
```sh
# Get disk size
# blockdev -s /dev/hda
863718912
# Get block size
# blockdev -b /dev/hda
512
```