denver38,
LOL! That's quite the scheme you've got going (not at all bad though). And paneless is basically right. Take your last 4GB, allocate a portion of it to a swap partition (if your system has 256MB RAM, I'd make the swap partition about 300-350MB). Swap partitions have their own FS, so don't worry about that here.
Take the rest, and make a primary Linux partition. If you have a newer distro, don't use ext2, use ext3(RedHat 8) or Reiser(anything else). If Reiser is an option to you, go with it.
As for which bootloader, that's up to you. GRUB is very nice, but I have little experience with it, so I can't step-by-step you through that one. It's main feature though is the abillity to be configured without being re-installed (unlike LILO).
Since you are dual-booting 2K and XP, I do recommend using the MS loader so that you can have your choice of Windows and Linux all at once, but doing so with Linux is not real straight forward. Here's how using LILO:
When you install Linux, choose LILO as your bootloader. Install LILO to the mbr for your Linux partition (note, it will not be bootable from this location, make sure you have a boot disk).
Once you have Linux installed and running, open a shell and mount your partition that the first Win drive (C:) is on. Then as root go to /etc and edit your lilo.conf file so that only has a Linux label (remove NT, failsafe, floppy ,etc) and remove the prompt. Save it to something like lilo.conf.nt. Then type:
lilo -C lilo.conf.nt
to re-install lilo with the new settings. Then type (read notes below before doing this):
dd if=/dev/hda5 of=/mnt/win_c/bootsect.lnx
where hda5 is your primary Linux partition (I'm assuming that will be it) and /mnt/win_c is where your windows C: drive is mounted.
Now boot into Windows and edit your boot.ini (you'll have to turn off the read-only, system and hidden flags first) and add a line like this:
"Linux" = c:\bootsect.lnx
Save the file and reset all the flags. You can now use the NT bootloader to load Linux.
If you have any questions, need more detail, etc, let us know.
Main Topics
Browse All Topics





by: panelessPosted on 2003-03-06 at 20:43:40ID: 8085973
With such a partitioning scheme, I'd boot to the Linux CD, and partition/install to the 4G of free space and simply create a boot floppy to get there for the time being. That should leave the XP, W2K, and other partitions to boot as they are. Then, boot into Linux and create a grub floppy (grub-floppy /dev/fd0)and experiment with booting to the other partitions until you get each one to boot correctly. Make note of how to successfully boot each OS and add them to the grub.conf file that you'll eventually use to multi-boot.