this post was submitted on 28 Mar 2024
40 points (97.6% liked)
Linux
48130 readers
506 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
That's just used data. The global used metric likely incorporates metadata etc. too. System aswell as the GlobalReserve are probably accounted as fully used as they're, well, reserved.
Likely compression or inline extents. btrfs only reports apparent size to
du
and friends unfortunately.Your home has a lot of shared extents which indicates to me that you have at least one snapshot of it.
You also wrote 13.6GiB of new data to your home since the snapshot. Assuming a similar amount of data was deleted/overwritten since, that would add up to 76GiB. If there's perhaps one or two more snapshots, that would explain the rest.
Snapshots are "free" only so long as you don't write or delete any data in the origin.
Thanks that helped. I have one snapshot of home. ~~Size of diff between btrfs subvolume and~~ Additional space used by snapshot is 11GiB (probably) and
btrfs fi du -s /
is 72GiB, making 83GiB (closer tobtrfs fi df /
).WDYM by "diff"?
Also forgot to mention but if you want to know what's taking how much space on your btrfs, try
btdu
. It uses a sampling-based approach and will therefore never be 100% accurate but it should be quite accurate enough after a little bit.just comparing the subvolume with its snapshot with
btrfs send -p /example/subvol /snapshot/of/example/subvol >examplediff.btrfs
.From
man btrfs-send
Thanks for btdu, it seems useful as 'btrfs fi du' probably doesn't account for compression, will check it out sometime.
Note that the diff does not necessarily correlate with the amount of data that changed, not how much additional space the snapshot takes.
You are right. I shouldn't have used diff. I'll fix that
Also, incremental changes from subvolume to its snapshot might be incorrect as that will be new data added to subvolume, rather that old data deleted from subvolume while still present in snapshot. I'll have to check carefully.