Difference between revisions of "Translations:Btrfs/60/en"
From Manjaro
Views
Actions
Namespaces
Variants
Tools
(Importing a new version from external source) |
(Importing a new version from external source) |
||
Line 2: | Line 2: | ||
Because a complete balance may take '''a long time''', there is the possibility of filters in balance. When using a filter only those chunks will be balanced, that are named by the filter. | Because a complete balance may take '''a long time''', there is the possibility of filters in balance. When using a filter only those chunks will be balanced, that are named by the filter. | ||
* '''balance''' all chunks that are less than 50% full. This '''will''' take some time ! | * '''balance''' all chunks that are less than 50% full. This '''will''' take some time ! | ||
{{RootCmd|command=btrfs balance start | {{RootCmd|command=btrfs balance start -dusage=50 /}} | ||
* '''balance''' all chunks that are less than 90% full. This '''will''' take some time ! | * '''balance''' all chunks that are less than 90% full. This '''will''' take some time ! | ||
{{RootCmd|command=btrfs balance start | {{RootCmd|command=btrfs balance start -dusage=90 /}} | ||
{{BoxWarning|Don't use filters higher than 90%|This is unnecessary on an SSD drive. On a hard drive, this will put a lot of strain on the disk. Even with today's hard drives (>2TB), it may take a very long time. (e.g. 24 hours or more)}} | {{BoxWarning|Don't use filters higher than 90%|This is unnecessary on an SSD drive. On a hard drive, this will put a lot of strain on the disk. Even with today's hard drives (>2TB), it may take a very long time. (e.g. 24 hours or more)}} |
Latest revision as of 10:40, 25 December 2024
Filters
Because a complete balance may take a long time, there is the possibility of filters in balance. When using a filter only those chunks will be balanced, that are named by the filter.
- balance all chunks that are less than 50% full. This will take some time !
root # btrfs balance start -dusage=50 /
- balance all chunks that are less than 90% full. This will take some time !
root # btrfs balance start -dusage=90 /