This is my (short) How-To about
....... it can be build on the spot.
Open a konsole and issue the
bold green commands:
(I have shortened some of the response to keep it better readable)
1. Create directory (to control the mess):
atolboo@pardus2011 ~ $ mkdir RTL8188ce
2. Go into created directory:
atolboo@pardus2011 ~ $ cd RTL8188ce
3. Install/check required PiSi packeges:
atolboo@pardus2011 RTL8188ce $ sudo pisi it make gcc kernel-module-headers -y
Password:
Following packages will be installed:
binutils bison cloog-ppl elfutils gcc glpk kernel-module-headers libmpc libsigsegv m4 make ppl
Total size of package(s): 23.98 MB
Downloading 1 / 12
Package glpk found in repository pardus
glpk-4.44-7-p11-i686.pisi (360.0 KB)100% 488.81 KB/s [00:00:00] [complete]
Downloading 2 / 12
.
.
package
Configured make
Installed make
4. Download source code from Realtek:
The whole ftp:// address (including tar.gz) bellow is also part of the wget command and should be
bold green.
atolboo@pardus2011 RTL8188ce $
wget ftp://WebUser:fh7SkVT4@95.130.192.218/cn/wlan/92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz --2011-11-10 22:33:11--
ftp://WebUser:*password*@95.130.192.218/cn/wlan/92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz
=> “92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz”
Connecting to 95.130.192.218:21... connected.
Logging in as WebUser ... Logged in!
==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD (1) /cn/wlan ... done.
==> SIZE 92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz ... 4720995
==> PASV ... done. ==> RETR 92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz ... done.
Length: 4720995 (4.5M) (unauthoritative)
100%[=============================>] 4,720,995 143K/s in 45s
2011-11-10 22:34:11 (103 KB/s) - “92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz” saved [4720995]
5. Unpack downloaded file and go into created directory;
atolboo@pardus2011 RTL8188ce $ tar -xzf 92ce_se_de_linux_mac80211_0004.0816.2011.tar.gz
atolboo@pardus2011 RTL8188ce $ cd rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011
6. Build the driver:
atolboo@pardus2011 rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011 $ make
make -C /lib/modules/2.6.37.6/build M=/home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011 modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.37.6'
CC [M] /home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/base.o
CC [M] /home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rc.o
.
.
CC [M] /home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rtl8192de/dm.o
LD [M] /home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rtl8192de/rtl8192de.o
Building modules, stage 2.
MODPOST 1 modules
CC /home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rtl8192de/rtl8192de.mod.o
LD [M] /home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rtl8192de/rtl8192de.ko
make[2]: Leaving directory `/usr/src/linux-headers-2.6.37.6'
make[1]: Leaving directory `/home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rtl8192de'
7. Install build driver:
atolboo@pardus2011 rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011 $ sudo make install
make -C /lib/modules/2.6.37.6/build M=/home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011 modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.37.6'
Building modules, stage 2.
MODPOST 1 modules
.
.
make[2]: Leaving directory `/usr/src/linux-headers-2.6.37.6'
make[1]: Leaving directory `/home/atolboo/RTL8188ce/rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011/rtl8192de'
find /lib/modules/2.6.37.6 -name "r8192se_*.ko" -exec rm {} \;
find /lib/modules/2.6.37.6 -name "r8192ce_*.ko" -exec rm {} \;
8. Reboot the computer in order to activate the installed driver:
atolboo@pardus2011 rtl_92ce_92se_92de_linux_mac80211_0004.0816.2011 $ sudo reboot
9. After the reboot I can only check the presence of the driver:
atolboo@pardus2011 ~ $ ls -l /lib/modules/2.6.37.6/kernel/drivers/net/wireless/rtlwifi/rtl8192se/
total 108
-rw-r--r-- 1 root root 109282 Nov 10 22:35 rtl8192se.ko
10. And I expect that you can now make a WLAN connection in your Network Manager.
As I don have the required hardware, this is as far as I can go at this moment.
When the above (short) How-To is too difficult, I can create a PiSi package for it in order to install through Package Manager.
I hope the above will do the trick
Now it´s time to goto