The current ZFS configuration on server is:
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 / mnt
zfs snapshot pool/data@monday>/mnt/Monday
B.
Mount -F nfs systemB: /backup/mnt
zfs snapshot pool1/data@Monday
zfs 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
Explanation:
Example (assuming there exists a snapshot ‘tank/test@1).
Full backup
Now let’s do a full initial backup from the ‘tank/test@1 snapshot:
# zfs send tank/test@1 | zfs receive tank/testback
C
http://docs.oracle.com/cd/E23823_01/html/819-5461/ghzvz.html
C is the correct
root@s11:~# zfs send rpool/export/home/llaszlo@monday | ssh -lroot 192.168.87.50 zfs recv rpool/monday
Password:
root@s11:~#
root@ldg # zfs list | grep monday
rpool/monday 43.5K 111G 43.5K /rpool/monday
root@ldg # ls -la /rpool/monday/
total 26
drwxr-xr-x 5 admin staff 9 Nov 26 14:14 .
drwxr-xr-x 6 root root 6 Nov 27 15:18 ..
-rw——- 1 admin staff 93 Nov 25 14:42 .bash_history
-rw-r–r– 1 admin staff 159 Nov 24 11:16 .bashrc
drwx—— 3 admin staff 3 Nov 26 14:14 .cache
drwx—— 3 admin staff 3 Nov 26 14:14 .config
drwx—— 3 admin staff 3 Nov 26 14:14 .local
-rw-r–r– 1 admin staff 568 Nov 24 11:16 .profile
-rw——- 1 admin staff 1120 Nov 27 2014 .sh_history
dear all; sorry but i am confuse C and D option. question required create full backup while system active. So first it create backup, then send and other server receive the backup file…
but i go with C option…:-)
The question states to create a full backup.. It doesnt seem like a snapshot is created in option C, so isnt D correct?
Snapshot is already created and “send” sends full snapshot (to send incremental data you have to use ‘send -i’)
the question states that “Select the option that creates a full backup of the /data file system”
so C is incorrect
go with D