blob: 5a3efce68fbd1d73874faa560bf2debc3f93bbf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#############################################################
To install GRUB on the master boot record of your hard drive
use 'grub-install <drive-to-install>' command.
A typical menu entry in /boot/grub/grub.cfg for FreeBSD:
menuentry "FreeBSD" {
set root(hd0,1,a)
kfreebsd /boot/loader
}
Or use grub-mkconfig to create the config file.
#############################################################
|