diff options
author | Robert Millan <zeratul2@wanadoo.es> | 2002-11-21 20:17:17 +0000 |
---|---|---|
committer | Robert Millan <zeratul2@wanadoo.es> | 2002-11-21 20:17:17 +0000 |
commit | a3dbef459a8743d3ff8456496ab40773318b667d (patch) | |
tree | 6b24734ec2cf060f1b70d1be1ecb58956fc71cba /Hurd/GrubNotes.mdwn | |
parent | 7e87786a0151a420987068bae4ea855ca79dc0c0 (diff) | |
download | web-a3dbef459a8743d3ff8456496ab40773318b667d.tar.gz web-a3dbef459a8743d3ff8456496ab40773318b667d.tar.bz2 web-a3dbef459a8743d3ff8456496ab40773318b667d.zip |
none
Diffstat (limited to 'Hurd/GrubNotes.mdwn')
-rw-r--r-- | Hurd/GrubNotes.mdwn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Hurd/GrubNotes.mdwn b/Hurd/GrubNotes.mdwn index 4ff5fe69..5d63c118 100644 --- a/Hurd/GrubNotes.mdwn +++ b/Hurd/GrubNotes.mdwn @@ -1,10 +1,10 @@ -While [Neal's install guide](http://web.walfield.org/papers/hurd-installation-guide/english/hurd-install-guide.html) is very good it does not have complete information regarding the GRUB boot loader. The syntax is also different from Lilo's and so to scratch my own itch I'm creating this quick reference. The [Grub manual](http://www.gnu.org/manual/grub/html_mono/grub.html) is another good reference. +This section complements the [[InstallNotes]] with complete information regarding the GRUB boot loader. The syntax is different from Lilo's and so to scratch my own itch I'm creating this quick reference. The [Grub manual](http://www.gnu.org/manual/grub/html_mono/grub.html) is another good reference. * update-grub is **Debian specific** and very nice. It will automatically create a /boot/grub/menu.lst file for the kernels in /boot/. It will also append a manually configured set for other partitions like the GNU/Hurd. * grub-floppy is a **Debian specific** boot floppy creation script. * mkbimage is a **Debian specific** boot disk image creation script. -* <http://khazad.dyndns.org/packages/grub-disk/> contains a Debian packaged makefile for creating CD & floppy images. -* essential Grub commands & disk syntax +* <http://khazad.dyndns.org/pub/packages/grub-disk/> contains a Debian packaged makefile for creating CD & floppy images. Looks like it doesn't work properly. If you fix it, please send patches to the maintainer. +* essential GRUB commands & disk syntax * root * kernel * module @@ -17,7 +17,7 @@ While [Neal's install guide](http://web.walfield.org/papers/hurd-installation-gu initrd /boot/initrd.img-2.4.18 savedefault - title GNU/Hurd + title GNU root (hd0,15) kernel /boot/oskit-mach root=device:hd0s16 -- module /hurd/ext2fs.static --multiboot-command-line=${kernel-command-line} --host-priv-port=${host-port} --device-master-port=${device-port} --exec-server-task=${exec-task} -T typed ${root} $(task-create) $(task-resume) @@ -32,7 +32,7 @@ While [Neal's install guide](http://web.walfield.org/papers/hurd-installation-gu Another example, just as good, but a lot easier to read. The backslash at the end of each line is to "escape" the enter-key. So make sure there are no spaces following the backslashes! - title GNU/Linux (Kernel 2.4.18) + title GNU/Linux (Linux 2.4.18) root (hd0,11) kernel /boot/vmlinuz-2.4.18 root=/dev/hda12 ro initrd /boot/initrd.img-2.4.18 |