which two describe the correct procedure to be performed on Saturday for backing tip the /data file system to a remote disk named /remote/backup?

View the Exhibit to inspect the file system configuration on your server.

Your department’s backup policy is to perform a full backup to 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
Saturday for backing tip the /data file system to a remote disk named /remote/backup?

View the Exhibit to inspect the file system configuration on your server.

Your department’s backup policy is to perform a full backup to 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
Saturday for backing tip the /data file system to a remote disk named /remote/backup?

A.
On Saturday:
zfs snapshot pool1/data@sat
zfs send pool1/data@sat > /remote/backup/full

B.
On Saturday:
zfs create snapshotpool1/data@sat
zfs send pool1/data@sat | zfs recv remote/backup/ �date� �+%m%d%y�

C.
On Saturday:
zfs create snapshotpool1/data@sat
zfs send pool1/data@sat > /remote/backup/full

D.
On Saturday:
zfs create snapshotpool1/data@sat
zfs send pool1/data@sat | zfsrecv remote/backup

Explanation:
You can use the zfs send command to send a copy of a snapshot stream and
receive the snapshot stream in another pool on the same system or in another pool on a different
system that is used to store backup data.
You can send incremental data by using the zfs send -i option.
For example:
host1# zfs send -i tank/dana@snap1 tank/dana@snap2 | zfs recv newtank/dana
Note that the first argument (snap1) is the earlier snapshot and the second argument (snap2) is
the later snapshot. In this case, the newtank/dana file system must already exist for the
incremental receive to be successful.
The incremental snap1 source can be specified as the last component of the snapshot name. This
shortcut means you only have to specify the name after the @ sign for snap1, which is assumed
to be from the same file system as snap2. For example:
host1# zfs send -i snap1 tank/dana@snap2 > zfs recv newtank/dana
This shortcut syntax is equivalent to the incremental syntax in the preceding example.
Reference: Oracle Solaris ZFS Administration Guide, Sending and Receiving ZFS Data



Leave a Reply 7

Your email address will not be published. Required fields are marked *


Borko

Borko

A is correct answer, but question was “which two describe…”. I can’t find even similar correct answer among B,C,D…

henry

henry

“which two” mean the first and the second line at point A 🙂

rk

rk

Possible is A only

On Saturday:
zfs snapshot pool1/data@sat
zfs send pool1/data@sat > /remote/backup/full
On each weekday:
Remove the previous daily snapshot.
zfs snapshot pool1/data@daily
zfs send –i pool1/data@sat pool1/data@daily > /remote/backup/daily

andy

andy

A:

zfs create snapshot is not valid …..