blob: 2534eeb1e4283a0cc3d7daced606611b11fdc612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
format: rst
toc: no
...
==================
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.
|