Oracle Solaris 11 System Administrator — Question 21
The ZFS configuration on your server is:
Pool1 6.67G 31K /pool
Pool1/data 31K 31K /data
Select the three commands that you would use to 1. Create, 2. List, and 3. Delete a snapshot of the /data file system.
Answer options
- 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
Correct answer: A, D, E
Explanation
The correct answer includes A, D, and E because A creates a snapshot of the /data filesystem, D lists the snapshots associated with /data, and E deletes the specified snapshot. Option B is incorrect as the command syntax is not valid, while C lists all snapshots rather than those specific to /data, and F is also incorrect since it refers to the wrong command structure.