Labthrift Labthrift What to buy. What to skip. Why.

Written 28 Aug 2026. This is a how-to, not a product card. Buy links are not tagged yet.

See which leftover-box folders are eating the disk

Before you buy a bigger drive or a NAS, ask which folders are taking the room.

The leftover box said the disk is getting full. You already looked with df. Now you want the next question: where did the room go? This is a look, not a shopping trip. You are not buying a NAS, a bigger laptop drive, or a tiny computer for this.

Skip until you looked at disk room

If you have not checked room yet, stop. That look is see if the leftover box still has room. From the couch, ask:

df -h

Point at the line that ends in /. If Use% is fine, skip this note. If phones and laptops cannot open the house folder, fix that first: when the house share disappeared, check the leftover box.

What this is

du is the leftover box reporting how much room each folder is using. You are asking one folder deep on the leftover-box disk, then reading the last line. The biggest folder is at the bottom. You are not installing a disk-space app, and you are not deleting anything yet.

Ask which folders are big

SSH in from the couch, then ask:

sudo du -xh -d 1 / 2>/dev/null | sort -h

This can take a minute on a leftover laptop. Let it finish. Do not buy anything while it runs. -x stays on the leftover-box disk, so a USB backup stick is not in this list. -d 1 means one folder deep. sort -h puts the smallest first, so the eater is last.

You should see lines like /home, /var, /usr, /srv. /usr is the OS. A few gigabytes there is normal. Do not delete it. /srv is the house folder from a file share on the leftover box. That number should match what see if the leftover box still has room already told you. /var is logs and leftover package downloads. /home is leftover-laptop Downloads and Trash if this box still has a desktop user.

Optional: look one folder deeper

If /var is the last line, look inside it:

sudo du -xh -d 1 /var 2>/dev/null | sort -h

Same idea for /home or /srv. Keep going one folder at a time. Do not jump into random rm.

If a folder is the eater

If /var is huge, clear leftover package downloads: clear old package downloads when the leftover disk is tight. Then trim old diary pages: clear old leftover-box logs when the disk is tight. If /srv is huge, that is the house folder doing its job. Copy it off: a backup of the leftover-box folder. Then delete only files you recognize from the share, not system folders. If /home is huge and this leftover is a laptop, empty Downloads and Trash from see if the leftover box still has room. Do not buy a NAS because a leftover laptop disk is small.

What next

Room check stays see if the leftover box still has room. One safe cleanup is clear old package downloads when the leftover disk is tight. Another is clear old leftover-box logs when the disk is tight. How big the leftover disk already is stays see how big the leftover box disk already is. A second copy is a backup of the leftover-box folder. Skip a new 4TB drive this weekend.

Skip

Sources

Debian: du. Debian: sort. Ubuntu: du. Ubuntu: sort. Official pages only. For disk room, see see if the leftover box still has room. For leftover package downloads, see clear old package downloads when the leftover disk is tight. For leftover-box disk size, see see how big the leftover box disk already is. For a second copy, see a backup of the leftover-box folder. For the login, see SSH from the couch.

Also on this topic

See if the leftover box still has roomAfter the house folder is working, check that the leftover box is not filling up. Photos stop copying when the disk is full. You do not need a NAS for this look. Clear old package downloads when the leftover disk is tightAfter weekly updates, leftover downloads can sit on the disk. Clear them safely before you buy a bigger drive or a NAS. Clear old leftover-box logs when the disk is tightBefore you buy a bigger drive or a NAS, see how much room the leftover-box diary is using, then trim old entries safely. See how big the leftover box disk already isBefore you buy a tiny computer or a NAS, check how big the leftover box disk already is. A backup of the leftover-box folderA second copy of the house folder, on a USB disk you already have, or on another leftover computer. You do not need a NAS for this. A file share on the leftover boxA folder on the leftover box that the house can open from a laptop or a phone. You do not need a NAS for this. A first file box (NAS) for one personA quiet box for photos and backups. Two drives if you want sleep.