Delete a snapshot of the /data file system.

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.

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



Leave a Reply 4

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


johny

johny

correct answers A, C, E