From 7d94f5cfba52399bbf8dfc32015f1f4939ffe530 Mon Sep 17 00:00:00 2001 From: Miguel Scapolla Date: Mon, 16 May 2016 22:54:18 -0300 Subject: [PATCH] Grub. --- grub.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 grub.txt diff --git a/grub.txt b/grub.txt new file mode 100644 index 0000000..9dd7a54 --- /dev/null +++ b/grub.txt @@ -0,0 +1,22 @@ +Change the text and background color in grub +---------------------------------------------- + +* /etc/grub.d/99_colors + #!/bin/sh + echo "set menu_color_highlight=dark-gray/black" + echo "set menu_color_normal=black/black" + echo "set color_normal=dark-gray/black" + +* chmod 755 /etc/grub.d/99_colors + +* update-grub + + +Change the timeout if boot fails +---------------------------------- + +* /etc/default/grub + GRUB_TIMEOUT=5 + GRUB_RECORDFAIL_TIMEOUT=$GRUB_TIMEOUT + +* update-grub