cleverhandle
Diamond Member
I give the opposite advice. If you want to learn anything, stick with one distro and learn how to make it work for you. Obviously, you can take that to ridiculous extremes, but just bopping around between distros and never doing much past installing them and praying isn't going to make you any more comfortable with the system.Originally posted by: Atheus
Just get another distro if fedora's not working for you out of the box. Try ubuntu.
Since it sounds like the forcedeth drivers might work in newer kernel versions, I would go that route rather than try to install the nvidia drivers, at least to start with. You can find 2.6.15 kernel RPM's here. There are several versions there, in fact, so you can try others if the first doesn't work. Use a Windows computer to download those and burn them to a disk (USB key would probably work too, but the CD is a bit more foolproof). Log into Linux, open the CD under "Computer" and copy the kernel RPM to your home directory. Open a terminal, type
sudo rpm -Uvh kernel
...then hit TAB to complete the packagename for you, then enter. That should install the new kernel for you and give a choice for it in the Grub menu after you reboot. If the hardware autodetection doesn't work, try a
sudo /sbin/modprobe forcedeth
and see what you get. As a matter of fact, you might at least try the last command before you bother with any of the downloading, because it's not clear that you've actually given the current forcedeth driver a shot yet.
If you get hung up somewhere, I would highly recommend doing some Googling. Search on the command you don't understand or the error message you get. Reading up a bit on command-line and linux basics would be a good idea too. Like, what does sudo do? (Hint: man sudo) Or, why does /sbin/modprobe work, but plain modprobe doesn't? (Hint: $PATH). People can (and will) keep answering your questions here, but if you're going to be happy using Linux, you need to get used to searching, and reading, to find information on your own. And you only get better at that with practice. I think the FedoraFAQ is a pretty nice starting place.