I’ve been using btrfs for as the filesystem for my primary laptop for a while now.
Btrfs is a copy-on-write filesystem for Linux that has many advanced features:
If you haven’t read up about it, there’s some real advantages to using a system like this
Btrfs (at least on Arch linux) has quota support enabled by default. This is a problem, because it can greatly impact the performance of your system overall. I was practically ripping my hair out trying to find out what was causing so much IO and CPU burn on my system, especially when sending snapshots to an external disk.
It turns out that btrfs-quota
was the culprit. Even the quota wiki page notes that there are performance implications of enabling quota support, and it should only be enabled if it will actually be used.
For my system, I ran the following two commands:
btrfs disable quota /
btrfs disable quota /home
…and all my performance problems were solved.
sudo btrfs property set -ts butter-backer-snap ro false