Question 63:
You are to create a ZFS file system with the following specifications: ✑ lzjb compression enabled ✑ cannot consume more than 2 GB from the storage pool ✑ redundant data at the block level eliminated ✑ mounted as /data Which command creates the desired file system?
Answer options:
A. zfs create - mountpoint=/data,compression=on,algorithm=lzjb,deduplication=on,quota=2g /pool1/data B. zfs create -o mountpoint=/data compression=on algorithm=lzjb deduplication=on quota=2g pool1/data C. zfs create -o mountpoint=/data -о compression=on -o dedup=on -o quota=2g pool1/data D. zfs create -o mountpoint=/data -o compression=on -o algorithm=lzjb -o deduplication=on -o quota=2g pool1/data E. zfs create pool1/data zfs set mountpoint=/data,quota=2g,dedup=on,compression=on /pool1/data