Merge #61 `Recommend symlinking grub.cfg`

This commit is contained in:
Colin Walters 2018-02-14 16:21:44 +00:00
commit 1bdda27450
1 changed files with 9 additions and 0 deletions

View File

@ -81,3 +81,12 @@ system, you'll need to copy that version over:
``` ```
cp /boot/loader/grub.cfg /boot/grub2/grub.cfg 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 .
```