mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:27:45 +00:00
Base: Add man page for blockdev utility
This commit is contained in:
parent
410d81706d
commit
7269ce15fc
1 changed files with 30 additions and 0 deletions
30
Base/usr/share/man/man8/blockdev.md
Normal file
30
Base/usr/share/man/man8/blockdev.md
Normal 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
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue