In Linux, each disk and each partition on the disk is treated as a
device. So, for example, the entire first hard disk is known as
/dev/hda and the entire second hard disk, if
there is one, is /dev/hdb. The first partition of
the first hard drive is /dev/hda1, and the second
partition is /dev/hda2; the first partition of
the second hard drive is /dev/hdb1; and so on.
If your drives are SCSI instead of IDE, the naming works the same way
except that the devices are /dev/sda,
/dev/sda1, and so on. Thus, if you want to
specify that the Linux partition is the second partition of the first
hard drive (as in the examples in this chapter), you refer to it as
/dev/hda2.
The rest of the chapter describes the various techniques for booting
Linux and the options that you can specify to configure both the boot
loader that you use and the Linux kernel. Both LILO and Loadlin let
you pass options to the loader and they also let you specify options
for the kernel.