nerdexam
Oracle

1Z0-821 · Question #61

The current ZFS configuration on your server is: pool1 124K 3.91G 32K /pool1 pool1/data 31K 3.91G 31K /data You need to create a new file system named /data2. /data2 will be a copy of the /data file…

The correct answer is E. zfs snapshot pool1/data@now. zfs snapshot [-r] [-o property=value] ... filesystem@snapname|volume@snapname Creates a snapshot with the given name. All previous modifications by successful system calls to the file system are part of the snapshot zfs clone [-p] [-o property=value] ... snapshot…

Managing Data Storage

Question

The current ZFS configuration on your server is:

pool1 124K 3.91G 32K /pool1 pool1/data 31K 3.91G 31K /data You need to create a new file system named /data2. /data2 will be a copy of the /data file system. You need to conserve disk space on this server whenever possible. Which option should you choose to create /data2, which will be a read writeable copy of the /data file system, while minimizing the amount of total disk space used in pool1?

Options

  • Azfs set mountpoint=/data2 compression=on pool1/data2
  • Bzfs snapshot pool1/data@now
  • Czfs create snapshot pool1/data@now
  • Dzfs create snapshot pool1/data@now
  • Ezfs snapshot pool1/data@now
  • Fzfs snapshot pool1/data@now

How the community answered

(14 responses)
  • A
    7% (1)
  • B
    7% (1)
  • E
    86% (12)

Explanation

zfs snapshot [-r] [-o property=value] ... filesystem@snapname|volume@snapname Creates a snapshot with the given name. All previous modifications by successful system calls to the file system are part of the snapshot zfs clone [-p] [-o property=value] ... snapshot filesystem|volume Creates a clone of the given Because snapshots are fast and low overhead, they can be used extensively without great concern for system performance or disk use . With ZFS you can not only create snapshot but create a clone of a snapshot. A clone is a writable volume or file system whose initial contents are the same as the dataset from which it was created. As with snapshots, creating a clone is nearly instantaneous, and initially consumes no additional disk space. In addition, you can snapshot a clone. A clone is a writable volume or file system whose initial contents are the same as the original dataset. As with snapshots, creating a clone is nearly instantaneous, and initially consumes no additional space. Clones can only be created from a snapshot. When a snapshot is cloned, it creates an implicit dependency between the parent and child.

Topics

#ZFS clone#ZFS snapshot#disk space efficiency#writable clone

Community Discussion

No community discussion yet for this question.

Full 1Z0-821 Practice