Hi,
well here it is. This is the way that I have gotten the Realtek RTL8187 driver to work.
Step 1 : Add to modprobe.conf
gedit /etc/modprobe.conf
alias wlan0 r8187
Step 2: Remove existing ieee80211 stack modules
find /lib/modules/`uname -r` -name ieee80211
If this returns a result remove these file or copy them to a backup location, I used the rm command
Step 3: Install sourceforge RTL8187 drivers
I put them in a directory under my home directory
su -
Password:
cd /home
mkdir realtek
cd /home/realtek
svn co
https://rtl-wifi.svn.sourceforge.net/svnroot/rtl-wifi
(**NOTE** very important- to use the svn command you MUST have subversion installed and I believe you can do that by yum install subverion)
Step 4: edit their Makefile
Step 3 makes a directory called rtl-wifi
cd /home/realtek/rtl-wifi
gedit Makefile
(comment out line 6)
//* obj-m += rtl818x-newstack/ *//
(goto to the end of file and add this line)
install:
$(MAKE) -C $(KSRC) M=$(PWD) modules_install
(then save the file)
the new Makefile will look like this >>>
ifneq ($(KERNELRELEASE),)
# kbuild part of makefile
obj-m += ieee80211/
obj-m += rtl8187-newstack/
//* obj-m += rtl818x-newstack/ *//
else
KVER := $(shell uname -r)
KSRC := /lib/modules/$(KVER)/build
all: modules
clean:
$(MAKE) -C $(KSRC) M=$(PWD) clean
modules:
$(MAKE) -C $(KSRC) M=$(PWD) modules
install:
$(MAKE) -C $(KSRC) M=$(PWD) modules_install
endif
Step 5: compile driver and insert modules
make clean
make
make install
(this should compile and insert modules)
Step 6: Reboot
reboot
Step 7: Add driver to system-config-network
(At the top click on System Administration Network and type your password
(Click on New)
(Select Wireless Connection)
(Click Foward)
(r8187 (wlan0) should be there high light that and click Foward)
(Select Managed mode)
(Select Network (SSID) name specified button and enter you network name)
(Click Foward)
(Select Automatically obtain ip address with DHCP)
(check the box next to Automatically obtain DNS information from provider
(check the MTU box and set to 1500)
(Click Foward)
(Click Apply)
(check box next to wlan0 and click on ACTIVATE)
(go to Wireless settings tab and check your settings)
(go to General tab and check the box next to activate this device when computer starts)
(check other settings on this page they should be what you set them to)
Step 8:Reboot Again
(reboot and your connection should come up)
Hope this helps everyone
Also beware this driver is still some what buggy so it may hang your system
I am sure our friends at sourceforge will help us out with a more stable driver shortly
Good luck,
dave