LinuxCommandLibrary

dysk

filesystem information in formatted tables

TLDR

Get standard overview of disks

$ dysk
copy
Sort by free size
$ dysk -s free
copy
Include only HDD disks
$ dysk -f 'disk = HDD'
copy
Exclude SSD disks
$ dysk -f 'disk <> SSD'
copy
Display disks with high utilization or low free space
$ dysk -f 'use > 65% | free < 50G'
copy

SYNOPSIS

dysk [options]

DESCRIPTION

dysk displays filesystem information in a formatted table. It shows mount points, disk types, sizes, usage, and filesystem types with color-coded output.
Provides filtering and sorting capabilities for focused analysis.

PARAMETERS

-s, --sort field

Sort by field (free, size, used, filesystem, etc.)
-f, --filter expr
Filter expression
--json
Output as JSON
--csv
Output as CSV

FILTER EXPRESSIONS

disk = HDD

Only HDDs
disk = SSD
Only SSDs
use > 65%
Usage over 65%
free < 50G
Less than 50GB free

CAVEATS

Written in Rust. Disk type detection depends on system information availability.

SEE ALSO

df(1), lsblk(8)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community