View the Exhibit and review the disk configuration.
The following command is executed on the disk:
zpool create pool1 c3t3d0s0
What is the result of executing this command?
A.
A zpool create error is generated.
B.
A 1-GB ZFS file system named /pool1 is created.
C.
A 15.97-GB storage pool named pool1 is created.
D.
The disk will contain an EFI disk label.
Explanation:
The s0 part of c3t3d0 is 1 GB in size according to the exhibit.
B is correct.
A is correct if we do not use -f switch at zpool create command.
root@s11:~# zpool create pool1 c2t0d0s0
vdev verification failed: use -f to override the following errors:
/dev/dsk/c2t0d0s0 overlaps with /dev/dsk/c2t0d0s2
Unable to build pool from specified devices: device already in use
root@s11:~# zpool create -f pool1 c2t0d0s0
root@s11:~# zpool list
NAME SIZE ALLOC FREE CAP DEDUP HEALTH ALTROOT
pool1 1016M 150K 1016M 0% 1.00x ONLINE –
rpool 31.5G 6.74G 24.8G 21% 1.00x ONLINE –
B…