this post was submitted on 14 Aug 2023
0 points (NaN% liked)

Linux

56401 readers
921 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 6 years ago
MODERATORS
 

I'm having trouble understanding all the benefits of BTRFS and how they'll apply to me.

Copy on Write and auto-compression seem like they will free up a bit of space.

What other practical benefits will I see from using BTRFS? Are there any noticeable performance benefits?

I use my computer to dual-boot. I don't need snapshots because I have a custom script for a fresh install. I use my PC for gaming and work. I've got an NVMe, two SSD's and one HDD.

Thanks in advance!

all 8 comments
sorted by: hot top controversial new old
[–] BCsven@lemmy.ca 0 points 2 years ago

If you don't think you want snapshotting then dont worry too much about it and use whatever fs you like. if you want a nice btrfs experience try tumbleweed or leap, it is already fully integrated with system and grub , and maintenance with cleanup etc. cobbling together btrfs on your own is fine too but if you miss sometging and mess things up it is usually user error not btrfs error. .

[–] cmnybo@discuss.tchncs.de 0 points 2 years ago

Yes, snapshots nice to have and compression reduces the disk usage for the operating system and software quite a bit.

[–] taaz@biglemmowski.win 0 points 2 years ago

As a (semi) power user I also use btrfs subvolumes to create "partitions" (single disk system, @root, @home, @docker), allows for making snapshots only for system or user data, etc.

All around, I love btrfs and I am never going back to journaling fs like ext4

[–] studcavity@discuss.tchncs.de 0 points 2 years ago (2 children)

Copy on write is likely to introduce significant performance decreases in cases where large or medium size files have a couple bytes changed. It’s usually recommended to turn CoW off on those files; I found it to be more hassle than it’s worth for a root filesystem. It is still a reasonable file system for file storage that looks more like archival - files land there and seldomly or never change. If you don’t have a specific need in mind though, I wouldn’t bother - in my opinion, it’s not great as a general purpose filesystem.

[–] NanoooK@sh.itjust.works 0 points 2 years ago

Why would OpenSuse/Fedora choose it as their default filesystem if it was as bad you describe?

[–] Zozano@aussie.zone 0 points 2 years ago

Thanks for the advice!

How do you define medium or large files? What examples of these exist on root?