Skip to content

Commit

Permalink
Add an optional note about seeing boot menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kyzn committed May 9, 2020
1 parent 56f3ce0 commit 5b24d5b
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,28 @@ The script will ask you a couple of questions, after which it will spend ~20 min
downloading and installing stuff. If you don't know how to answer the questions, just
accept the defaults.

If everything goes well, the script should complete successfully, and you can now
reboot:
If everything goes well, the script should complete successfully.

Optionally, if you want to see which-kernel-is-which in boot menu, you can edit grub config:

```bash
sudo gedit /etc/default/grub
```

There, update `GRUB_TIMEOUT` and add `GRUB_TIMEOUT_STYLE`.

```
GRUB_TIMEOUT=5
GRUB_TIMEOUT_STYLE="menu"
```

After saving the file, you have to run:

```bash
sudo update-grub
```

Now you can reboot:

```bash
sudo reboot
Expand Down

0 comments on commit 5b24d5b

Please sign in to comment.