Mission 36

Directory size map

Combine find, du, and df to reason about storage safely.

Files and paths
8 minutes Core Lesson 36 of 360
finddudf
Lesson 36 of 360 0/360 lessons 0/17 missions Files and paths · 8 minutes
0%
Continue View profile
Ops lab terminal Training lab
New learnerrank 0XP 0%complete
learner@clairos:/home/learner $ Unix ops lab: type a command, press Enter
Instructions 8 minutes

Click any instruction for the command details, the why, and the common mistake to avoid.

Find text files

Run find /home/learner -name txt.

find /home/learner -name txt
Size home

Run du -sh /home/learner.

du -sh /home/learner
Show filesystems

Run df -h.

df -h
Lesson support

What to notice while you play.

Objective

Inspect file locations and simulated disk use.

Hint

Use find first, then du and df.

Why it matters

Operators should measure before deleting or moving data.

Common mistakes
  • Deleting files to make space before checking size.
  • Confusing directory size with filesystem capacity.
Reference

Commands in this lesson.

find [path] [-name text]

Search lab filesystem paths.

df|du|free|uptime

Inspect training resource and system health.