Wow! Got the stock 2.4.19 kernel (no patches) from kernel.org. Got it compiled and installed and StarCraft runs *perfectly*!! Not only that but my suggish VMware operation seems to be completely gone! 2.4.19 appears to be the way to go. To make things easier on other RedHat 8.0 people, here are the steps I took to build a new kernel with nearly the identical options of my default 2.4.18-14 kernel that was installed by default during the RedHat installation:
First make sure you have the necessary kernel development packages installed by clicking on "System Settings">"Packages" on your menu. You should have "Development Tools" and "Kernel Development" boxes checked (if not, check them). Then open a terminal and get, build, and install the 2.4.19 kernel by:
$ su -
enter root's password
# cd /usr/src
# wget
http://www.kernel.org/pub/linux/kernel/v2.4/linux-2.4.19.tar.bz2# tar -xvjf linux-2.4.19.tar.bz2
# rm -f linux-2.4 linux
# ln -s linux-2.4.19 linux-2.4
# ln -s linux-2.4 linux
# cd linux
# cp /boot/config-2.4.18-14 .config
# make xconfig
Click "SCSI Support", then click "SCSI low-level drivers", then set "Simple 53c710 SCSI Support" to "n". Click "OK", click "Main Menu", click "Save and Exit", click "OK". (I couldn't get the kernel to compile with this option set to module which is why we are turning it off here). Now build and install:
# make dep
# make clean
# make bzImage
# make modules
# make modules_install
# make install
If everything built properly that last command will install your kernel in /boot and add an entry in your GRUB boot menu automatically (now you will have two kernel entries on your GRUB menu, the new one will NOT be the default. Select it on the GRUB boot menu and if it boots and your system works fine you can make it the default kernel in your GRUB config file later (default=x depending on which entry your new kernel is)).
Also, if you use VMware or the NVidia kernel drivers, or any other 3rd party kernel modules they will have to be rebuilt and installed after booting the new kernel.
Have fun!!
P.S. This might be a candidate for an RH 8.0 specific FAQ question as I would highly recommend this to anyone running RedHat 8.0.
[ November 19, 2002: Message edited by: void main ]