From 99e57944b6138fd48586153370c4b79353f88a42 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 12 Feb 2018 11:27:55 -0500 Subject: [PATCH] Recommend symlinking grub.cfg Copying it is not the most convenient option. --- README-install-inside.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README-install-inside.md b/README-install-inside.md index afd3ee3..ac4b4d0 100644 --- a/README-install-inside.md +++ b/README-install-inside.md @@ -81,3 +81,12 @@ system, you'll need to copy that version over: ``` cp /boot/loader/grub.cfg /boot/grub2/grub.cfg ``` + +Note that you will have to repeat this every time a new tree is created, so it +may be more convenient to just create a symlink: + +``` +cd /boot/grub2 +rm grub.cfg +ln -s ../loader/grub.cfg . +```