Elektrine lite

← Feed

@Jankatarch@lemmy.world

Post #3696643

2026-07-01 20:28 UTC

Is there any advantage of using du over df for this?

Replies (1)

  • @Ephera@lemmy.ml 2026-07-01 21:27

    df only shows partitions, whereas du adds up the file sizes in the directory you specify. So, in particular, if you want to find out what’s taking up so much space, you can repeatedly run du -sh * and cd into the largest directory.

    Open ##3696642