1

Could the dual boot be changed from the usual Grub menu to making a selection with the keyboard?

The idea is to select between, say, Windows and Ubuntu with a key instead of having Grub to appear.

For example: on PC start up, press F1 to load Windows, or F2 if I want to star Ubuntu.

Could this be done so nobody knows there are two different Operating Systems installed?

carnendil
  • 5,529

1 Answers1

1

You can easily remove the timeout in /etc/defaults/grub. You change GRUB_TIMEOUT from 10 to 0. If you want something else than Ubuntu to be booted by default you can follow this solution. After changing you need to open a terminal and run sudo update-grub. (if you did it in this order you probably already have)

Then every time the machine starts, you can hold down SHIFT the menu will show up and you can choose what to boot. If you don't it automatically boots the default OS without showing anything.

Sylwester
  • 715