How big is a typical fresh Ubuntu 24.04 installation?
On a clean install of Ubuntu 24.04 LTS, disk usage is usually around:
- Minimal install: ~6–8 GB
- Normal desktop install: ~10–15 GB
- After updates + Snap base packages: 15–25 GB
Even with:
- A few extra applications
- Snap packages
- Logs and caches
It’s still very uncommon to exceed 30–40 GB on the internal SSD.
So you’re absolutely right to question a reported 186 GB.
What this means in your case
Since:
- You’ve rebooted (so deleted-but-open files are ruled out)
du / Baobab show ~30 GB
df still reports 186 GB
Then the space is not being consumed by normal files.
At this point, the most likely causes are:
Reserved blocks (root reservation)
By default, ext4 reserves 5% of the filesystem for root.
On a ~500 GB SSD, that’s:
You can confirm with:
df -h /
sudo tune2fs -l $(findmnt -no SOURCE /) | grep 'Reserved'
Snap loop devices confusing df
df counts mounted loopback devices (Snaps), which can make totals look misleading.
Check with:
lsblk
You’ll likely see many loop devices — this is normal and does not represent real disk consumption.
Filesystem overhead / metadata
Large filesystems have:
- Journals
- Allocation tables
- Alignment padding
This can easily account for several tens of GB that du will never show.
EFI / recovery / vendor partitions
Some OEM systems (especially mini-PCs) ship with:
- Large recovery partitions
- Hidden vendor data
These count toward disk usage but are not visible in /.
Check:
lsblk -f
One decisive test
Run this:
sudo du -xhd1 /
The -x flag ensures it stays on the internal SSD only and ignores mounted USB drives.
If that still totals ~30–40 GB, then:
- Your files are normal
- Your system is healthy
- The difference is structural/administrative space
Bottom line
- A normal Ubuntu system should not have 186 GB of user files
- Your intuition is correct
- This is almost certainly filesystem accounting, not real data usage
- No space is “lost” — it’s just not user-addressable
If you want, the next step would be to compare:
df -h /
du -shx /
That comparison will definitively show where the difference comes from.