HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dysk — Display filesystem information in a table. More information: <https://manned.org/dysk>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
tablecommandcliinformationmorefilesystemdyskdisplay
linux

Problem

How to use the dysk command: Display filesystem information in a table. More information: <https://manned.org/dysk>.

Solution

dysk — Display filesystem information in a table. More information: <https://manned.org/dysk>.

Get a standard overview of your usual disks:
dysk


Sort by free size:
dysk {{[-s|--sort]}} free


Include only HDD disks:
dysk {{[-f|--filter]}} 'disk = HDD'


Exclude SSD disks:
dysk {{[-f|--filter]}} 'disk <> SSD'


Display disks with high utilization or low free space:
dysk {{[-f|--filter]}} 'use > 65% | free < 50G'

Code Snippets

Get a standard overview of your usual disks

dysk

Sort by free size

dysk {{[-s|--sort]}} free

Include only HDD disks

dysk {{[-f|--filter]}} 'disk = HDD'

Exclude SSD disks

dysk {{[-f|--filter]}} 'disk <> SSD'

Display disks with high utilization or low free space

dysk {{[-f|--filter]}} 'use > 65% | free < 50G'

Context

tldr-pages: linux/dysk

Revisions (0)

No revisions yet.