1 answer
+0
−0
Add a new drive with the device command:
# btrfs device add /dev/new-device /path/to/the/filesystem/youre/adding/to
Then you probably want to balance the filesystem so that some data will actually live on the newly added drive:
# btrfs balance start /path/to/the/filesystem/youre/adding/to
You might want to look into the filter options, if you want to change your data/metadata profile now that you have more drives. E.g. maybe you had previously only one drive and now with two you'd like to utilize raid1 for data persistency. Plain balance won't do it.
0 comment threads