summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@charm.mit.edu>2008-10-05 20:53:37 -0400
committerBryan Newbold <bnewbold@charm.mit.edu>2008-10-05 20:53:37 -0400
commit26eddfcd1b4da4a8b4bc305beea8bfab6e4f080a (patch)
treeb57480e530880b84dd9dc5462e964054e0cdedb0
parentd1db10428098959154ab5182c132c5de34abc7ac (diff)
downloadknowledge-26eddfcd1b4da4a8b4bc305beea8bfab6e4f080a.tar.gz
knowledge-26eddfcd1b4da4a8b4bc305beea8bfab6e4f080a.zip
grub boot directions
-rw-r--r--software/grub-boot17
1 files changed, 17 insertions, 0 deletions
diff --git a/software/grub-boot b/software/grub-boot
new file mode 100644
index 0000000..76c4f7b
--- /dev/null
+++ b/software/grub-boot
@@ -0,0 +1,17 @@
+==================
+GRUB Boot
+==================
+
+This is useful for, eg, installing debian over the network with no cd drive or
+usb stick.
+
+Download the appropriate initrd.gz and linux kernels from whatever netboot
+intallation location (two seperate files), and put them somewhere like
+``/boot/install/``. Then edit ``/boot/grub/menu.lst`` and add an entry like::
+
+ title new install
+ root (hd0,0)
+ kernel /boot/install/linux ramdisk_size=128000 root=/dev/rd/0 rw
+ initrd /boot/install/initrd.gz
+
+Edit the ramdisk size, ramdisk device path, etc as needed.