Hi,
One of my FBSD machines is running on one disk, nda1 as shown by gpart, and I want to add one more disk, ada0 which is currently NTFS but I intend to make it ZFS, to simply get more storage space temporarily.
I supose I'll run following commands,
Then I should attach the disk to the pool. According to zpool-attach() manpage, If device is not currently part of a mirrored configuration, device automatically transforms into a two-way mirror of device and new_device.(), while I don't intend to create a mirror.
So how do I proceed to simply add a second disk to get more storage space?
One of my FBSD machines is running on one disk, nda1 as shown by gpart, and I want to add one more disk, ada0 which is currently NTFS but I intend to make it ZFS, to simply get more storage space temporarily.
I supose I'll run following commands,
gpart create -s gpt ada0
gpart add -t freebsd-zfs ada0
Then I should attach the disk to the pool. According to zpool-attach() manpage, If device is not currently part of a mirrored configuration, device automatically transforms into a two-way mirror of device and new_device.(), while I don't intend to create a mirror.
So how do I proceed to simply add a second disk to get more storage space?