From bdd4c1b5bf1badaf1a7efca6d106661dc810e232 Mon Sep 17 00:00:00 2001 From: Richard Laager Date: Wed, 26 Sep 2018 20:04:04 -0500 Subject: [PATCH] Ubuntu: Specify mount options in /etc/fstab These are not being set from the properties. For a similar issue, see: https://github.com/zfsonlinux/zfs/issues/7947 --- Ubuntu-18.04-Root-on-ZFS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ubuntu-18.04-Root-on-ZFS.md b/Ubuntu-18.04-Root-on-ZFS.md index e202702..a90b701 100644 --- a/Ubuntu-18.04-Root-on-ZFS.md +++ b/Ubuntu-18.04-Root-on-ZFS.md @@ -298,8 +298,8 @@ Install GRUB to the disk(s), not the partition(s). # zfs set mountpoint=legacy rpool/var/log # zfs set mountpoint=legacy rpool/var/tmp # cat >> /etc/fstab << EOF - rpool/var/log /var/log zfs noatime 0 0 - rpool/var/tmp /var/tmp zfs noatime 0 0 + rpool/var/log /var/log zfs noatime,nodev,noexec,nosuid 0 0 + rpool/var/tmp /var/tmp zfs noatime,nodev,nosuid 0 0 EOF ## Step 5: GRUB Installation