1Z0-821 · Question #195
In an effort to reduce storage space on your server, you would like to eliminate duplicate copies of data in your server's ZFS file systems. How do you specify that pool1/data should not contain…
The correct answer is E. zfs create - o dedup=on pool1/data. ZFS Deduplication Property Solaris Express Community Edition, build 129: In this Solaris release, you can use the deduplication property to remove redundant data from your ZFS file systems. If a file system has the dedup property enabled, duplicate data blocks are removed…
Question
In an effort to reduce storage space on your server, you would like to eliminate duplicate copies of data in your server's ZFS file systems. How do you specify that pool1/data should not contain duplicate data blocks (redundant data) on write operations?
Options
- Azfs create - o compression=on pool1/data
- Bzpool create -o deduplication =on pool1; zfs create pool1/data
- Czfs create - o deduplication=on pool1; zfs create pool1/data
- Dzfs create - o dedupratio=2 pool1/data
- Ezfs create - o dedup=on pool1/data
How the community answered
(43 responses)- A7% (3)
- B2% (1)
- C2% (1)
- D5% (2)
- E84% (36)
Explanation
ZFS Deduplication Property Solaris Express Community Edition, build 129: In this Solaris release, you can use the deduplication property to remove redundant data from your ZFS file systems. If a file system has the dedup property enabled, duplicate data blocks are removed synchronously. The result is that only unique data is stored and common components are shared between files. You can enable this property as follows: # zfs set dedup=on tank/home
Topics
Community Discussion
No community discussion yet for this question.