The ZFS configuration on your server is:
Pool1 6.67G31K/pool
Pool1/data31K31K/data
Select the three commands that you would use to 1. Create, 2. List, and 3. Delete a snapshot of
the /data file system.
A.
zfs snapshot pool1/data@now
B.
zfs create snapshot pool1/data@now
C.
zfs list -t snapshot
D.
zfs list -t snapshot pool1/data
E.
zfs destroy pool1/data@now
F.
zfs destroy snapshot pool1/data@now
Explanation:
A: Snapshots are created by using the zfs snapshot command, which takes as its
only argument the name of the snapshot to create.
D: You can list snapshots as follows:
# zfs list -t snapshot
E: Snapshots are destroyed by using the zfs destroy command. For example:
# zfs destroy tank/home/ahrens@now
correct answers A, C, E
A,C,E
A,C & E
http://docs.oracle.com/cd/E19253-01/819-5461/6n7ht6r4f/index.html
ACE