From the wiki:
To begin the balance:
sudo btrfs balance start --bg /
To check it's progress:
sudo btrfs balance status /
The above commands assume you're running from the btrfs subvolume mounted at /
If you have booted a different disk or from USB, mount the btrfs file system somewhere then run balance.
Example:
sudo mount <your btrfs fs> /mnt
sudo btrfs balance start --bg /mnt
sudo btrfs balance status /mnt
You would also use balance if you add or remove a device from a btrfs file system.
On a single-device filesystem, a balance may be also useful for (temporarily) reducing the amount of allocated but unused (meta)data chunks. Sometimes this is needed for fixing "file system full" issues.
sudo btrfs balance start --bg /
To check it's progress:
sudo btrfs balance status /
The above commands assume you're running from the btrfs subvolume mounted at /
If you have booted a different disk or from USB, mount the btrfs file system somewhere then run balance.
Example:
sudo mount <your btrfs fs> /mnt
sudo btrfs balance start --bg /mnt
sudo btrfs balance status /mnt
You would also use balance if you add or remove a device from a btrfs file system.
Comment