1Z0-821 · Question #184
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…
The correct answer is A. zfs snapshot pool1/data@now D. zfs list -t snapshot pool1/data E. zfs destroy pool1/data@now. 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…
Question
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.
Options
- Azfs snapshot pool1/data@now
- Bzfs create snapshot pool1/data@now
- Czfs list -t snapshot
- Dzfs list -t snapshot pool1/data
- Ezfs destroy pool1/data@now
- Fzfs destroy snapshot pool1/data@now
How the community answered
(59 responses)- A71% (42)
- B8% (5)
- C3% (2)
- F17% (10)
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
Topics
Community Discussion
No community discussion yet for this question.