OneLinersCommand workbench
Verified diagnostic signature

A filesystem cannot allocate more data blocks or metadata.

Match output from filesystem, understand the likely cause, then continue with sourced, read-only checks.

Confidence
high
Platforms
linux · macos
Verified
2026-07-24
Recognized output

Signature matched locally

filesystem is full

OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.

Likely causes

What usually produces this signal

  1. Capacity exhaustion
  2. Quota exhaustion
  3. Reserved blocks unavailable to the current identity
Safe next checks

Collect evidence before changing the system

01

Show free disk space in human-readable units

df -h

The output matches the expected target and exits without an error.

02

Show filesystem inode usage

df -i

The output matches the expected target and exits without an error.

03

Find the 20 largest files and folders here

du -ah . | sort -rh | head -20

The output matches the expected target and exits without an error.