Howto grub2 » Historie » Version 1
Jeremias Keihsler, 12.02.2020 16:44
| 1 | 1 | Jeremias Keihsler | h1. GRUB 2 |
|---|---|---|---|
| 2 | |||
| 3 | h2. Recreate Grub-Menu |
||
| 4 | |||
| 5 | for BIOS-systems |
||
| 6 | |||
| 7 | <pre><code class="bash"> |
||
| 8 | grub2-mkconfig -o /boot/grub2/grub.cfg |
||
| 9 | </code></pre> |
||
| 10 | |||
| 11 | on EFI-systems |
||
| 12 | |||
| 13 | <pre><code class="bash"> |
||
| 14 | grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg |
||
| 15 | </code></pre> |
||
| 16 | |||
| 17 | |||
| 18 | h2. make detailed boot-information visible |
||
| 19 | |||
| 20 | while it's possible to edit '/boot/grub2/grub.cfg' and also '/etc/default/grub' the better approach is to: |
||
| 21 | <pre><code class="bash"> |
||
| 22 | plymouth-set-default-theme details |
||
| 23 | dracut -f |
||
| 24 | </code></pre> |