Quote:
Original post by Chalma
using grub I have the following code
There are a few errors in that code (makeactive, kernel). Use root instead of rootnoverify when loading linux.
Quote:
2)do I need a linux swap partion? if I do do I need to partition my hd 3 times?(once for linux, one for fat32, other for linux swap?)
Yes, you do.
The way I have things set up:
/dev/hda1 32M ext2 /boot/dev/hda2 512M swap/dev/hda3 76G reiser //dev/hdc1 17G NTFS /win/c /dev/hdc5 18G NTFS /win/d
I don't have a separate partition for /home, nor a shared FAT32 (I primarily use linux nowadays), though Miserable's advice is sound. I did give Linux (read-only) access to my windows partitions - there's no need to bother hiding them, if you don't mount them, Linux won't touch them. Automated-install distros might detect them and install the appropriate kernel modules and mount points for you anyway.
Quote:
3)lets say I pick some mom-and-pop distro as my linux and I decide that sucks, I want something else to be the linux, what exactly is changing? do I have to mess with the MBR again? how do I change the grub settings without actually reinstalling a distro?
Depends on the distro. You could preserve your /home partition, and possibly your /boot partition (which holds the kernel and GRUB config). You'd wipe the root partition clean (keeps things simple) and install the new distribution over it. Swap, being swap, can stay as-is.
Quote:
4)can I continue leaving the linux portion of the startup code blank until I decide on a linux OS to install?
Typically, GRUB is setup as part of the install process, so you would not set it up 'in advance'. That being said, yes, you only have to fill the entries for the OS you are using. All you'll need is to have a partition on which to store the GRUB config files. You can have any number of entries, loading windows, different linux kernels, BSD, etc. You just have to point your root and boot in the right direction.
Quote:
5)if I totally screw this up can I get my original settings back.
Depends on what you screw up and what settings you're talking about. Your windows disk is safe, and any OS installer can wipe out your linux disk clean if necessary. You can also comment out entries in the GRUB config file ( the comment character is # ) for when you are experimenting. Repartitioning is always a bit tense.
Quote:
I did a google and they want me to compile things or change settings and frankly the code is stuff I don't recognize for my compiler to do or they want me to change a bunch of settings and run off into linux commands that I don't know how to do much less execute. Thanks A TON, again
Re-compiling your kernel is not a big deal. It is true that Gentoo does compile a lot of things (like... everything). It's a good opportunity to learn what those command do. But I understand you'll probably want something with an automated install (SuSE, Mandrake, Red Hat ...).
Or, as I first mentioned, you can use a LiveCD linux distribution (like Knoppix), which runs *everything* from the CD, leaving nothing on your disk - which, yes, can be a bit of a hassle to save anything as jflanglois points out - especially if all you have to write to is a read-only NTFS partition [smile]. Or Cygwin, which does give you a linux-like environment under Windows.
That way, you can figure out what those commands are about :)
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan