dvl@
Developer
I am setting up to run some tests on FreeBSD 9.1 with ZFS.
I'm blocked by this series of command which results in a 3GB zpool, instead of an expected 2.7TB zpool.
Here are the commands:
I'm sure this is something simple that I'm overlooking.
FWIW, /mnt is empty before and after this process.
I'm blocked by this series of command which results in a 3GB zpool, instead of an expected 2.7TB zpool.
Here are the commands:
Code:
[root@floater:~] # gpart create -s GPT ada1
ada1 created
[root@floater:~] # gpart add -a 1m -t freebsd-zfs -l Bay1.ada1 ada1
ada1p1 added
[root@floater:~] # gnop create -S 4k gpt/Bay1.ada1
[root@floater:~] # zpool create -f -m /mnt examplecluster /dev/gpt/Bay1.ada1.nop
[root@floater:~] # # df -h examplecluster
Filesystem Size Used Avail Capacity Mounted on
examplecluster 3.7G 144k 3.7G 0% /mnt
[root@floater:~] #
[root@floater:~] # gpart show ada1
=> 34 5860533101 ada1 GPT (2.7T)
34 2014 - free - (1M)
2048 5860530176 1 freebsd-zfs (2.7T)
5860532224 911 - free - (455k)
I'm sure this is something simple that I'm overlooking.
FWIW, /mnt is empty before and after this process.