Browse code

update storagedriver/zfs-driver.md for Ubuntu 16.04 LTS

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>

Akihiro Suda authored on 2016/06/28 15:10:54
Showing 1 changed files
... ...
@@ -129,6 +129,27 @@ Stop the Docker daemon. Then, ensure that you have a spare block device at
129 129
 `/dev/xvdb`. The device identifier may be be different in your environment and 
130 130
 you should substitute your own values throughout the procedure.
131 131
 
132
+### Install Zfs on Ubuntu 16.04 LTS
133
+
134
+1. If it is running, stop the Docker `daemon`.
135
+
136
+2. Install the `zfs` package.
137
+
138
+        $ sudo apt-get install -y zfs
139
+        Reading package lists... Done
140
+        Building dependency tree
141
+        <output truncated>
142
+
143
+3. Verify that the `zfs` module is loaded correctly.
144
+
145
+        $ lsmod | grep zfs
146
+        zfs                  2813952  3
147
+        zunicode              331776  1 zfs
148
+        zcommon                57344  1 zfs
149
+        znvpair                90112  2 zfs,zcommon
150
+        spl                   102400  3 zfs,zcommon,znvpair
151
+        zavl                   16384  1 zfs
152
+
132 153
 ### Install Zfs on Ubuntu 14.04 LTS
133 154
 
134 155
 1. If it is running, stop the Docker `daemon`.