Finally up and running whoop whoop :)

  • Thread starter Thread starter Deleted member 6068
  • Start date Start date
Also, instead of running sudo update-grub I would run:

Code:
 sudo grub-mkconfig -o /boot/grub/grub.cfg

update-grub is just a alias for grub-mkconfig -o /boot/grub/grub.cfg, but if you run the actual command you at least know exactly what is happening!
 
steve@steve-System-Product-Name:~$ sudo grub-install /dev/sdx
[sudo] password for steve:
Probing devices to guess BIOS drives. This may take a long time.
/dev/sdx: Not found or not a block device.
steve@steve-System-Product-Name:~$ sudo grub-install /dev/sdx0
/dev/sdx0: Not found or not a block device.
*snip*
steve@steve-System-Product-Name:~$
nothing will happen if you run
sudo grub-install /dev/sdx
btw, you want to substitute the letter of the disk you want your boot loader installed on, which will be /dev/sda for the first, /dev/sdb for the second
sudo grub-install /dev/sda
to install to the first harddisk for example.
 
Back
Top Bottom