Last modified by Drunk Monkey on 2024-09-01 12:35

From version 9.1
edited by Drunk Monkey
on 2024-09-01 08:50
Change comment: There is no comment for this version
To version 12.1
edited by Drunk Monkey
on 2024-09-01 09:47
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -9,38 +9,42 @@
9 9  **Zpool Administration**
10 10  0. [[Install ZFS on Debian GNU/Linux>>doc:]]
11 11  ~1. [[VDEVs>>doc:.ZFS-Administration-Part-I-VDEVs.WebHome]]
12 -2. RAIDZ
13 -3. The ZFS Intent Log (ZIL)
14 -4. The Adjustable Replacement Cache (ARC)
15 -5. Exporting and Importing Storage Pools
16 -6. Scrub and Resilver
17 -7. Getting and Setting Properties
18 -8. Best Practices and Caveats
12 +2. [[RAIDZ>>doc:.ZFS-Administration-Part-II-RAIDZ.WebHome]]
13 +3. [[The ZFS Intent Log (ZIL)>>doc:.ZFS-Administration-Part-III-The-ZFS-Intent-Log.WebHome]]
14 +4. [[The Adjustable Replacement Cache (ARC)>>doc:.ZFS-Administration-Part-IV-The-Adjustable-Replacement-Cache.WebHome]]
15 +5. [[Exporting and Importing Storage Pools>>doc:.ZFS-Administration-Part-V-Exporting-and-Importing-zpools.WebHome]]
16 +6. [[Scrub and Resilver>>doc:.ZFS-Administration-Part-VI-Scrub-and-Resilver.WebHome]]
17 +7. [[Getting and Setting Properties>>doc:.ZFS-Administration-Part-XVI-Getting-and-Setting-Properties.WebHome]]
18 +8. [[Best Practices and Caveats>>doc:.ZFS-Administration-Part-XVII-Best-Practices-and-Caveats.WebHome]]
19 19  )))
20 20  
21 21  (% class="col-xs-12 col-xs-4" %)
22 22  (((
23 23  **ZFS Administration**
24 -9. Copy-on-write
25 -10. Creating Filesystems
26 -~11. Compression and Deduplication
27 -12. Snapshots and Clones
28 -13. Sending and Receiving Filesystems
29 -14. ZVOLs
30 -15. iSCSI, NFS and Samba
31 -16. Getting and Setting Properties
32 -17. Best Practices and Caveats
24 +9. [[Copy-on-write>>doc:.ZFS-Administration-Part-IX-Copy-on-write.WebHome]]
25 +10. [[Creating Filesystems>>doc:.ZFS-Administration-Part-X-Creating-Filesystems.WebHome]]
26 +~11. [[Compression and Deduplication>>doc:.ZFS-Administration-Part-XI-Compression-and-Deduplication.WebHome]]
27 +12. [[Snapshots and Clones>>doc:.ZFS-Administration-Part-XII-Snapshots-and-Clones.WebHome]]
28 +13. [[Sending and Receiving Filesystems>>doc:.ZFS-Administration-Part-XIII-Sending-and-Receiving-Filesystems.WebHome]]
29 +14. [[ZVOLs>>doc:.ZFS-Administration-Part-XIV-ZVOLS.WebHome]]
30 +15. [[iSCSI, NFS and Samba>>doc:.ZFS-Administration-Part-XV-iSCSI-NFS-and-Samba.WebHome]]
31 +16. [[Getting and Setting Properties>>doc:.ZFS-Administration-Part-XVI-Getting-and-Setting-Properties.WebHome]]
32 +17. [[Best Practices and Caveats>>doc:.ZFS-Administration-Part-XVII-Best-Practices-and-Caveats.WebHome]]
33 33  )))
34 34  
35 35  (% class="col-xs-12 col-xs-4" %)
36 36  (((
37 37  **Appendices**
38 -A. Visualizing The ZFS Intent Log (ZIL)
39 -B. Using USB Drives
40 -C. Why You Should Use ECC RAM
41 -D. The True Cost Of Deduplication
38 +A. [[Visualizing The ZFS Intent Log (ZIL)>>doc:.ZFS-Administration-Appendix-A-Visualizing-The-ZFS-Intent-LOG-ZIL.WebHome]]
39 +B. [[Using USB Drives>>doc:.ZFS-Administration-Appendix-B-Using-USB-Drives.WebHome]]
40 +C. [[Why You Should Use ECC RAM>>doc:.ZFS-Administration-Appendix-C-Why-You-Should-Use-ECC-RAM.WebHome]]
41 +D. [[The True Cost Of Deduplication>>doc:.ZFS-Administration-Appendix-D-The-True-Cost-Of-Deduplication.WebHome]]
42 +E. [[How A ZIL Improves Disk Latencies>>doc:.ZFS-Administration-Appendix-E-How-A-ZIL-Improves-Disk-Latencies.WebHome]]
43 +
44 +
42 42  )))
43 43  )))
47 +
44 44  ----
45 45  
46 46  **UPDATE (May 06, 2012)**: I apologize for mentioning it supports encryption. Pool version 28 is the latest source that the Free Software community has. Encryption was not added until pool version 30. So, encryption is not supported natively with the ZFS on Linux project. However, you can use LUKS containers underneath, or you can use Ecryptfs for the entire filesystem, which would still give you all the checksum, scrubbing and data integrity benefits of ZFS. Until Oracle gets their act together, and releases the current sources of ZFS, crypto is not implemented.
... ... @@ -67,11 +67,7 @@
67 67  
68 68  --**A word of note:** the manpages get installed to /share/man/. I found this troubling. You can modify your $MANPATH variable to include /share/man/man8/, or by creating symlinks, which is the approach I took:--
69 69  
70 ---{{{# cd /usr/share/man/man8/
71 -# ln -s /share/man/man8/zdb.8 zdb.8
72 -# ln -s /share/man/man8/zfs.8 zfs.8
73 -# ln -s /share/man/man8/zpool.8 zpool.8
74 -}}}---
74 +--{{{# cd /usr/share/man/man8/ # ln -s /share/man/man8/zdb.8 zdb.8 # ln -s /share/man/man8/zfs.8 zfs.8 # ln -s /share/man/man8/zpool.8 zpool.8 }}}---
75 75  
76 76  Now, make your zpool, and start playing:
77 77