Changes for page ZFS - The Aaron Topponce Archive


on 2024-09-01 08:46


on 2024-09-01 08:49
Summary
Details
- Page properties
-
- Content
-
... ... @@ -50,11 +50,13 @@ 50 50 51 51 **UPDATE (May 05, 2013)**: I've updated the installation instructions. The old instructions included downloading the source and installing from there. At the time, that was all that was available. Since then, the ZFS on Linux project has created a proper Debian repository that you can use to install ZFS. Here is how you would do that: 52 52 53 -{{{$ su - 53 +{{code language="bash session"}} 54 +$ su - 54 54 # wget http://archive.zfsonlinux.org/debian/pool/main/z/zfsonlinux/zfsonlinux_2%7Ewheezy_all.deb 55 55 # dpkg -i zfsonlinux_2~wheezy_all.deb 56 56 # apt-get update 57 -# apt-get install debian-zfs}}} 58 +# apt-get install debian-zfs 59 +{{/code}} 58 58 59 59 And that's it! 60 60 ... ... @@ -64,14 +64,17 @@ 64 64 65 65 --**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:-- 66 66 67 -{{{# cd /usr/share/man/man8/ 69 +--{{{# cd /usr/share/man/man8/ 68 68 # ln -s /share/man/man8/zdb.8 zdb.8 69 69 # ln -s /share/man/man8/zfs.8 zfs.8 70 -# ln -s /share/man/man8/zpool.8 zpool.8}}} 72 +# ln -s /share/man/man8/zpool.8 zpool.8 73 +}}}--- 71 71 72 72 Now, make your zpool, and start playing: 73 73 74 -{{{$ sudo zpool create test raidz sdd sde sdf sdg sdh sdi}}} 77 +{{code language="bash session"}} 78 +$ sudo zpool create test raidz sdd sde sdf sdg sdh sdi 79 +{{/code}} 75 75 76 76 It is stable enough to run a ZFS root filesystem on a GNU/Linux installation for your workstation as something to play around with. It is copy-on-write, supports compression, deduplication, file atomicity, off-disk caching, --encryption,-- and much more. At this point, unfortunately, I'm convinced that ZFS as a Linux kernel module will become "stable" long before Btrfs will be stable in the mainline kernel. Either way, it doesn't matter to me. Both are Free Software, and both provide the long needed features we've needed with today's storage needs. Competition is healthy, and I love having choice. Right now, that choice might just be ZFS. 77 77