The "lsmod" command lists already-loaded modules. The "modprobe" command can load modules. Unfortunately those commands use somewhat cryptic (or at least very short) names for the modules (maybe you'd need something to do with acpi or apm?) Sorry, I'm only a novice at this stuff myself.
There might be graphical tools in Fedora Core 3 for adding modules, but I don't know. (If you don't get a helpful enough response here, I suppose you could try the Fedora Core forum?)
As for finding the .config file for your existing kernel, try
and look for something like "config.gz". If it's there, you should be able to change to the directory you are compiling the kernel from and do
Code:
zcat /proc/config.gz > .config
Zcat will spit out the uncompressed contents of /proc/config.gz, and the "> .config" will redirect it into a ".config" file in your current directory.
Also note that files that start with "." are hidden by default. Therefore, to see them in a directory listing, you have to use "ls -a" instead of just "ls".