mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-08 17:47:18 +00:00
Base: Add man page for blockdev utility
This commit is contained in:
committed by
Andreas Kling
parent
410d81706d
commit
7269ce15fc
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
|
||||
```
|
||||
Reference in New Issue
Block a user