Changes for page ZFS - The Aaron Topponce Archive

on 2024-09-01 12:35


on 2024-09-01 09:23
Summary
Details
- Page properties
-
- Content
-
... ... @@ -1,12 +10,3 @@ 1 -{{box title="**Archivist Note:**"}} 2 -These pages were retrieved from archive.org as the original blog has gone dark. I've preserved them as I found the information both clear and useful when I was first learning about managing the ZFS file system. 3 - 4 -As of today (2024), some of this information may be out of date as support for ZFS under linux has improved considerably. However, the basic administration commands remain the same. 5 - 6 -- Drunk Monkey 7 - 2024-Aug-31 8 -{{/box}} 9 - 10 10 = Install ZFS on Debian GNU/Linux = 11 11 12 12 == Table of Contents == ... ... @@ -20,37 +20,34 @@ 20 20 ~1. [[VDEVs>>doc:.ZFS-Administration-Part-I-VDEVs.WebHome]] 21 21 2. [[RAIDZ>>doc:.ZFS-Administration-Part-II-RAIDZ.WebHome]] 22 22 3. [[The ZFS Intent Log (ZIL)>>doc:.ZFS-Administration-Part-III-The-ZFS-Intent-Log.WebHome]] 23 -4. [[The Adjustable Replacement Cache (ARC)>>doc:.ZFS-Administration-Part-IV-The-Adjustable-Replacement-Cache.WebHome]]24 -5. [[Exporting and Importing Storage Pools>>doc:.ZFS-Administration-Part-V-Exporting-and-Importing-zpools.WebHome]]25 -6. [[Scrub and Resilver>>doc:.ZFS-Administration-Part-VI-Scrub-and-Resilver.WebHome]]26 -7. [[Getting and Setting Properties>>doc:.ZFS-Administration-Part-XVI-Getting-and-Setting-Properties.WebHome]]27 -8. [[Best Practices and Caveats>>doc:.ZFS-Administration-Part-XVII-Best-Practices-and-Caveats.WebHome]]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 28 28 ))) 29 29 30 30 (% class="col-xs-12 col-xs-4" %) 31 31 ((( 32 32 **ZFS Administration** 33 -9. [[Copy-on-write>>doc:.ZFS-Administration-Part-IX-Copy-on-write.WebHome]]34 -10. [[Creating Filesystems>>doc:.ZFS-Administration-Part-X-Creating-Filesystems.WebHome]]35 -~11. [[Compression and Deduplication>>doc:.ZFS-Administration-Part-XI-Compression-and-Deduplication.WebHome]]36 -12. [[Snapshots and Clones>>doc:.ZFS-Administration-Part-XII-Snapshots-and-Clones.WebHome]]37 -13. [[Sending and Receiving Filesystems>>doc:.ZFS-Administration-Part-XIII-Sending-and-Receiving-Filesystems.WebHome]]38 -14. [[ZVOLs>>doc:.ZFS-Administration-Part-XIV-ZVOLS.WebHome]]39 -15. [[iSCSI, NFS and Samba>>doc:.ZFS-Administration-Part-XV-iSCSI-NFS-and-Samba.WebHome]]40 -16. [[Getting and Setting Properties>>doc:.ZFS-Administration-Part-XVI-Getting-and-Setting-Properties.WebHome]]41 -17. [[Best Practices and Caveats>>doc:.ZFS-Administration-Part-XVII-Best-Practices-and-Caveats.WebHome]]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 42 42 ))) 43 43 44 44 (% class="col-xs-12 col-xs-4" %) 45 45 ((( 46 46 **Appendices** 47 -A. [[Visualizing The ZFS Intent Log (ZIL)>>doc:.ZFS-Administration-Appendix-A-Visualizing-The-ZFS-Intent-LOG-ZIL.WebHome]] 48 -B. [[Using USB Drives>>doc:.ZFS-Administration-Appendix-B-Using-USB-Drives.WebHome]] 49 -C. [[Why You Should Use ECC RAM>>doc:.ZFS-Administration-Appendix-C-Why-You-Should-Use-ECC-RAM.WebHome]] 50 -D. [[The True Cost Of Deduplication>>doc:.ZFS-Administration-Appendix-D-The-True-Cost-Of-Deduplication.WebHome]] 51 -E. [[How A ZIL Improves Disk Latencies>>doc:.ZFS-Administration-Appendix-E-How-A-ZIL-Improves-Disk-Latencies.WebHome]] 52 - 53 - 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 54 54 ))) 55 55 ))) 56 56 ... ... @@ -104,3 +104,12 @@ 104 104 {{box title="**Archived From:**"}} 105 105 [[https:~~/~~/web.archive.org/web/20210605031658/https:~~/~~/pthree.org/2012/04/17/install-zfs-on-debian-gnulinux/>>https://web.archive.org/web/20210605031658/https://pthree.org/2012/04/17/install-zfs-on-debian-gnulinux/]] 106 106 {{/box}} 95 + 96 +{{code language="bash session"}} 97 +$ su - 98 +# wget http://archive.zfsonlinux.org/debian/pool/main/z/zfsonlinux/zfsonlinux_2%7Ewheezy_all.deb 99 +# dpkg -i zfsonlinux_2~wheezy_all.deb 100 +# apt-get update 101 +# apt-get install debian-zfs 102 + 103 +{{/code}}