Changes for page ZFS - The Aaron Topponce Archive


on 2024-09-01 08:49


on 2024-09-01 08:47
Summary
Details
- Page properties
-
- Content
-
... ... @@ -50,13 +50,11 @@ 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 -{{code language="bash session"}} 54 -$ su - 53 +{{{$ su - 55 55 # wget http://archive.zfsonlinux.org/debian/pool/main/z/zfsonlinux/zfsonlinux_2%7Ewheezy_all.deb 56 56 # dpkg -i zfsonlinux_2~wheezy_all.deb 57 57 # apt-get update 58 -# apt-get install debian-zfs 59 -{{/code}} 57 +# apt-get install debian-zfs}}} 60 60 61 61 And that's it! 62 62 ... ... @@ -66,11 +66,10 @@ 66 66 67 67 --**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:-- 68 68 69 - --{{{# cd /usr/share/man/man8/67 +{{{# cd /usr/share/man/man8/ 70 70 # ln -s /share/man/man8/zdb.8 zdb.8 71 71 # ln -s /share/man/man8/zfs.8 zfs.8 72 -# ln -s /share/man/man8/zpool.8 zpool.8 73 -}}}--- 70 +# ln -s /share/man/man8/zpool.8 zpool.8}}} 74 74 75 75 Now, make your zpool, and start playing: 76 76