From 6fbe58566bf308f0c3bb97bc2f0b485002e75208 Mon Sep 17 00:00:00 2001 From: Richard Laager Date: Wed, 9 Aug 2017 01:04:39 -0500 Subject: [PATCH] Ubuntu: Fix a symlink path ScottHaney reported in issue #6258 that GRUB had complaints about /dev/luks1, and using an absolute path for the symlink fixed that. I'm not entirely sure if this is necessary, but I don't see how the absolute path is any worse. --- Ubuntu-16.04-Root-on-ZFS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ubuntu-16.04-Root-on-ZFS.md b/Ubuntu-16.04-Root-on-ZFS.md index 749175a..c53809c 100644 --- a/Ubuntu-16.04-Root-on-ZFS.md +++ b/Ubuntu-16.04-Root-on-ZFS.md @@ -261,7 +261,7 @@ Even if you prefer a non-English system language, always ensure that `en_US.UTF- ENV{DM_NAME}!="", SYMLINK+="$env{DM_NAME}" ENV{DM_NAME}!="", SYMLINK+="dm-name-$env{DM_NAME}" - # ln -s mapper/luks1 /dev/luks1 + # ln -s /dev/mapper/luks1 /dev/luks1 **Notes:** * The use of `initramfs` is a work-around for [cryptsetup does not support ZFS](https://bugs.launchpad.net/ubuntu/+source/cryptsetup/+bug/1612906).