109
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]

I noticed that I only had 5 GiB of free space left today. After quickly deleting some cached files, I tried to figure out what was causing this, but a lot was missing. Every tool gives a different amount of remaining storage space. System Monitor says I'm using 892.2 GiB/2.8 TiB (I don't even have 2.8 TiB of storage though???). Filelight shows 32.4 GiB in total when scanning root, but 594.9 GiB when scanning my home folder.

Meanwhile, ncdu (another tool to view disk usage) shows 2.1 TiB with an apparent size of 130 TiB of disk space!

    1.3 TiB [#############################################] /.snapshots
  578.8 GiB [####################                         ] /home
  204.0 GiB [#######                                      ] /var
   42.5 GiB [#                                            ] /usr
   14.1 GiB [                                             ] /nix
    1.3 GiB [                                             ] /opt
. 434.6 MiB [                                             ] /tmp
  350.4 MiB [                                             ] /boot
   80.8 MiB [                                             ] /root
   23.3 MiB [                                             ] /etc
.   5.5 MiB [                                             ] /run
   88.0 KiB [                                             ] /dev
@   4.0 KiB [                                             ]  lib64
@   4.0 KiB [                                             ]  sbin
@   4.0 KiB [                                             ]  lib
@   4.0 KiB [                                             ]  bin
.   0.0   B [                                             ] /proc
    0.0   B [                                             ] /sys
    0.0   B [                                             ] /srv
    0.0   B [                                             ] /mnt

I assume the /.snapshots folder isn't really that big, and it's just counting it wrong. However, I'm wondering whether this could cause issues with other programs thinking they don't have enough storage space. Steam also seems to follow the inflated amount and refuses to install any games.

I haven't encountered this issue before, I still had about 100 GiB of free space last time I booted my system. Does anyone know what could cause this issue and how to resolve it?

EDIT 2024-04-06:

snapper ls only shows 12 snapshots, 10 of them taken in the past 2 days before and after zypper transactions. There aren't any older snapshots, so I assume they get cleaned up automatically. It seems like snapshots aren't the culprit.

I also ran btrfs balance start --full-balance --bg / and that netted me an additional 30 GiB's of free space, and it's only at 25% yet.

EDIT 2024-04-07: It seems like Docker is the problem.

I ran the docker system prune command and it reclaimed 167 GB!

all 38 comments
sorted by: hot top controversial new old
[-] HumanPerson 83 points 3 months ago

Sorry I don't have an answer but I like the title.

[-] [email protected] 22 points 3 months ago

A typical quantum entangled hyperbolic non-linear file system, or QEHNLFS for short. This was first described in Einstein's fourth relativity theory. I states the following:

In any QEHNLFS the perceived storage space (used and unused) may vary depending on the reference frame. All reference frames are equally valid and therefore the absolute storage space of the QEHNLFS is not well defined. QEHNLFSs generally appear around a central supermassive black hole, typically located at /dev/null in the QEHNLFS

[-] [email protected] 6 points 3 months ago

Sorry, but Maxwell's equations look wayyy better.

[-] [email protected] 1 points 3 months ago

Probably due to too much coffee in his house.

[-] [email protected] 14 points 3 months ago

Something... something... Schrödinger

[-] [email protected] 63 points 3 months ago

Your btrfs snapshots are possibly counted separately by all the regular tools. They simply go into every directory they can find and add up the size of the files they see. They do not care if they are looking at an identical snapshot of the folder next to them, they simply add it all up.

Use sudo btrfs filesystem show (and maybe add a path behind it, I am not sure). That will give you the true usage.

[-] [email protected] 26 points 3 months ago

sudo btrfs filesystem show seems to display a reasonable amount.

Label: none  uuid: af5f864d-2de9-48a9-b521-5923dc08c9e3
        Total devices 1 FS bytes used 867.13GiB
        devid    1 size 922.12GiB used 921.12GiB path /dev/mapper/system-root
[-] [email protected] 28 points 3 months ago* (last edited 3 months ago)

This makes sense. When you use a copy-on-write block device, it is doing things below the level of the filesystem, so you have to use cow-aware tools to get an accurate view of your used disk space. For example, if you have two files that are 100% deduplicated at the cow-block level, they would show up as different inodes on the filesystem and would appear as using twice the space in the filesystem as they do on the block device. Same would go for snapshots and compressed blocks.

See also: https://www.ctrl.blog/entry/file-cloning.html

[-] [email protected] 47 points 3 months ago

From the btrfs page on the archwiki

General linux userspace tools such as df(1) will inaccurately report free space on a Btrfs partition. It is recommended to use btrfs filesystem usage to query Btrfs partitions.

[-] [email protected] 28 points 3 months ago

I confess I'm a big fan of the post title

[-] [email protected] 17 points 3 months ago

This is a common thing one needs to do. Not all linux gui tools are perfect, and some calculate number differently (1000 vs 1024 soon mounts up to big differences). Also, if you're running as a user, you're not going to be seeing all the files.

Here's how I do it as a sysadmin:

As root, run:

du /* -shc |sort -h

"disk usage for all files in root, displaying a summary instead of listing all sub-files, and human-readable numbers, with a total. Then sort the results so that the largest are at the bottom"

Takes a while (many minutes, up to hours or days if you've slow disks, many files or remote filesystems) to run on most systems and there's no output until it finishes because it's piping to sort. You can speed it up by omitting the "|sort -h" bit, and you'll get summaries when each top level dir is checked, but you won't have a nice sorted output.

You'll probably get some permission errors when it goes through /proc or /dev

You can be more targetted by picking some of the common places, like /var - here's mine from a debian system, takes a couple of seconds. I'll often start with /var as it's a common place for systems to start filling up along with /home.

root@scrofula:~# du /var/* -shc |sort -h
0       /var/lock
0       /var/run
4.0K    /var/local
4.0K    /var/mail
4.0K    /var/opt
168K    /var/tmp
4.1M    /var/spool
5.5M    /var/backups
781M    /var/log
787M    /var/cache
8.3G    /var/www
36G     /var/lib
46G     total

Here we can see /var/lib has a lot of stuff in it, so we can look into that with du /var/lib/* -shc|sort -h - it turns out mine has some big databases in /var/lib/mysql and a bunch of docker stuff in /var/lib/docker, not surprising.

Sometimes you just won't be able to tally what you're seeing with what you're using. Often that might be due to a locked file having been deleted or truncated, but the lock's still preventing the OS from seeing the recovered space. That generally sorts itself out with various timeouts, but you can try and find it with lsof, or if the machine isn't doing much, a quick reboot.

[-] [email protected] 4 points 3 months ago

I tend to use du -hxd1 / rather than -hs so that it stays on one filesystem (usually I'm looking for usage of only one file system) and descends one directory.

[-] [email protected] 1 points 3 months ago

Good thinking. That would speed things up on some systems for sure.

[-] [email protected] 0 points 3 months ago

This is the way.

[-] [email protected] 7 points 3 months ago* (last edited 3 months ago)

It could be that hardlinked files are being double-counted. What software manages that snapshot folder?

[-] [email protected] 6 points 3 months ago

I'm using BTRFS with snapper.

[-] [email protected] 4 points 3 months ago

Maybe it's time to clean out some old snapshots in Snapper.

[-] [email protected] 1 points 3 months ago

sudo snapper list shows 1 snapshot without a date, 1 old one, and 10 taken in the past couple of days before and after zypper transactions. It seems like they get cleaned up automatically.

[-] [email protected] 2 points 3 months ago* (last edited 3 months ago)

There's hardlink, and then below that there's the COW/dedupe version called "reflink". Two files can point to the same chunks of data (extents), and altering one does not alter the other. Two files can point to just some of the same chunks of data, too. I don't think there is much indicator for when this is happening, besides the free space vs used space accounting looking crazy. If you "compsize" two reflinked files at once, it'll show you the difference.

[-] [email protected] 7 points 3 months ago

Well, maybe you just have a non-measurable set as filesystem 😅

[-] [email protected] 5 points 3 months ago

If you're using compression, try compsize.

[-] [email protected] 3 points 3 months ago

Look at this:

https://gitlab.com/TheEvilSkeleton/flatpak-dedup-checker

I think that has some BTRFS stuff in it to display actual size with deduplication

BTRFS support in Filelight/kio is pretty important.

[-] [email protected] 2 points 3 months ago

compsize will give you an honest overview of what's going on with btrfs.

[-] lurch 2 points 3 months ago

when summing up totals, docker containers and snaps are likely counted twice in some programs: they have volume files that are counted once and then those are mounted as file systems and their contents can be counted again in the mount point.

[-] [email protected] 1 points 3 months ago

Just a heads up: I've noticed that Steam tends to require a bunch of spare space beyond the size the game takes up.

[-] [email protected] 0 points 3 months ago
[-] [email protected] 2 points 3 months ago

Those don't work properly due to BTRFS snapshots and compression.

this post was submitted on 05 Apr 2024
109 points (98.2% liked)

Linux

45773 readers
764 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS