Difference between revisions of "Software RAID GRUB Fix"

From HyperSecurity Wiki
Jump to: navigation, search
(Created page with "Fix Software RAID1 GRUB as root on booted system if GRUB is installed on /dev/sda: grub-install --modules=mdraid1x /dev/sdb update-grub /dev/sdb Also, confirm GRUB is insta...")
 
 
Line 9: Line 9:
 
  vi /etc/default/grub
 
  vi /etc/default/grub
  
Add rootdelay=10 GRUB_CMDLINE_LINUX_DEFAULT to:
+
Add "rootdelay=10" to "GRUB_CMDLINE_LINUX_DEFAULT" to:
 
   GRUB_CMDLINE_LINUX_DEFAULT="quiet rootdelay=10"
 
   GRUB_CMDLINE_LINUX_DEFAULT="quiet rootdelay=10"

Latest revision as of 20:53, 20 March 2019

Fix Software RAID1 GRUB as root on booted system if GRUB is installed on /dev/sda:

grub-install --modules=mdraid1x /dev/sdb
update-grub /dev/sdb

Also, confirm GRUB is installed both drives:

dpkg-reconfigure grub-pc

Fix Grub booting not reading config:

vi /etc/default/grub

Add "rootdelay=10" to "GRUB_CMDLINE_LINUX_DEFAULT" to:

 GRUB_CMDLINE_LINUX_DEFAULT="quiet rootdelay=10"