Question 114:
The current ZFS configuration on your server is: pool1 124K 3.91G 32K /pool1 pool1/data 31K 3.91G 31K /data You need to create a new file system named /data2. /data2 will be a copy of the /data file system. You need to conserve disk space on this server whenever possible. Which option should you choose to create /data2, which will be a read writeable copy of the /data file system, while minimizing the amount of total disk space used in pool1?
Answer options:
A. zfs set mountpoint=/data2 compression=on pool1/data2 B. zfs snapshot pool1/data@nowzfs set mountpoint=/data2, comptession=on pool1/data@now C. zfs create snapshot pool1/data@nowzfs send pool1/data@now | zfs recv pool1/data2 D. zfs create snapshot pool1/data@nowzfs clone -o mountpoint=/data2 pool1/data@now pool1/data2 E. zfs snapshot pool1/data@nowzfs clone -o mountpoint=/data2 -ocompression=on pool1/data@now pool1/data2 F. zfs snapshot pool1/data@nowzfs clone -o mountpoint=/data2 pool1/data@now pool1/data2