Question 27:
View the exhibit to inspect the file system configuration on your server.
You department`s backup policy is to perform a full backup to a remote system disk on Saturday. On each weekday, you are to perform an incremental backup to the same remote system disk. Each incremental backup will contain only data that has been modified since the previous Saturday backup. The server file systems must remain available at all times and can never be taken offline. The backup must not only provide for the recovery of the most recent version of a file, but must also allow recovery of previous versions of a file. Following your company policy, which two describe the correct procedure to be performed on each weekday for backing up the /data file system to a remote disk named /remote/backup?
Answer options:
A. Remove the previous daily snapshot. zfs snapshot pool1/data@daily zfs send - i pool1/data@sat pool1/data@daily > /remote/backup/full B. Remove the previous daily snapshot. zfs snapshot pool1/data@daily zfs send - i pool1/data#sat pool1/data@daily | zfs recv remote /backup/ date +%m%d% C. Remove the previous daily snapshot. zfs snapshot pool1/data@daily zfs send - i pool1/data@sat pool1/data@daily > /remote/backup/daily D. Remove the previous daily snapshot. zfs create - i pool1/data@sat pool1/data@daily zfs send pool1/data@daily | zfs remote/backup