mirror of
https://github.com/cheat/cheat.git
synced 2024-11-25 15:31:36 +01:00
Add cheatsheet for lsblk
This commit is contained in:
parent
aa1e12625e
commit
b0aa272b49
21
cheat/cheatsheets/lsblk
Normal file
21
cheat/cheatsheets/lsblk
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Show all available block devices along with their partitioning schemes
|
||||||
|
lsblk
|
||||||
|
|
||||||
|
# To show SCSI devices:
|
||||||
|
lsblk --scsi
|
||||||
|
|
||||||
|
# To show a specific device
|
||||||
|
lsblk /dev/sda
|
||||||
|
|
||||||
|
# To verify TRIM support:
|
||||||
|
# Check the values of DISC-GRAN (discard granularity) and DISC-MAX (discard max bytes) columns.
|
||||||
|
# Non-zero values indicate TRIM support
|
||||||
|
lsblk --discard
|
||||||
|
|
||||||
|
# To featch info about filesystems:
|
||||||
|
lsblk --fs
|
||||||
|
|
||||||
|
# For JSON, LIST or TREE output formats use the following flags:
|
||||||
|
lsblk --json
|
||||||
|
lsblk --list
|
||||||
|
lsblk --tree # default view
|
Loading…
Reference in New Issue
Block a user