Recommend symlinking grub.cfg

Copying it is not the most convenient option.
This commit is contained in:
Matthias Clasen 2018-02-12 11:27:55 -05:00
parent 483baf6b7d
commit 99e57944b6

View file

@ -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 .
```