You need to backup the /data file system while the file system is active. Select the option that creates a full backup of the /data file system and stores the backup on server in the pool named backup.
A.
Mount -F nfs system: /backup / mntzfs snapshot pool/data@monday>/mnt/Monday
B.
Mount -F nfs systemB: /backup/mntzfs snapshot pool1/data@Mondayzfs clone pool1/data@monday/mnt/Monday
C.
Zfs send pool1/data@Monday | ssh system zfs recv backup/monday
D.
Zfs snapshot pool1/data@Monday | ssh system zfs recv backup/monday
C is wrong. You can only send a snap shot that has been created. In the command shown in C, you do not have the snapshot yet. You need to create it first :
zfs snapshot pool1/data@monday
once created it can be sent to destination system with :
zfs send pool1/data@monday | ssh system zfs recv backup/monday
Therefore, the correct option (seems to me) is A
upvoted 1 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
dlicheri
7 months, 1 week ago