MrEngman wrote:Hi guys,
If you update to 3.18.xx+ there is a version of the driver included in the image so you don't need to download a new driver, however, it needs a separate firmware file downloading and installing.
You can download and install the driver firmware file with the single commandYou will only need to do this once as it does not need updating when the linux version is updated. Also you will not need to load a new driver whenever you update the linux version as the new driver is now included in the code.Code: Select all
sudo wget https://github.com/lwfinger/rtl8188eu/raw/c83976d1dfb4793893158461430261562b3a5bf0/rtl8188eufw.bin -O /lib/firmware/rtlwifi/rtl8188eufw.bin
Once you have downloaded the firmware file reboot the Pi to bring up the wifi.
Hi, I done this but reboot is very slowly with WiFi dongle inserted in the hub usb.
In wpa_gui adapter doesn't appear and blue LED doesn't flash.
In /lib/firmware/rtlwifi file rtl8188eufw.bin is present but with many others (8712, 8192).
Have you ideas about?
MrEngman
First, there are several firmware files in the /lib/firmware/rtlwifi directory. They are for other wifi adaptors and will not cause problems.Celeste wrote:Hi, I done this but reboot is very slowly with WiFi dongle inserted in the hub usb.MrEngman wrote:Hi guys,
If you update to 3.18.xx+ there is a version of the driver included in the image so you don't need to download a new driver, however, it needs a separate firmware file downloading and installing.
You can download and install the driver firmware file with the single commandYou will only need to do this once as it does not need updating when the linux version is updated. Also you will not need to load a new driver whenever you update the linux version as the new driver is now included in the code.Code: Select all
sudo wget https://github.com/lwfinger/rtl8188eu/raw/c83976d1dfb4793893158461430261562b3a5bf0/rtl8188eufw.bin -O /lib/firmware/rtlwifi/rtl8188eufw.bin
Once you have downloaded the firmware file reboot the Pi to bring up the wifi.
MrEngman
In wpa_gui adapter doesn't appear and blue LED doesn't flash.
In /lib/firmware/rtlwifi file rtl8188eufw.bin is present but with many others (8712, 8192).
Have you ideas about?
Code: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Take a look here.aimc wrote:Hello, can you update the driver list?
There aren't any drivers for #741 yet, and i had trouble using previous versions.
I even also compiled from the main drivers project, and didn't work.
(i had to return to 737 because of this)
Well, I have 2 Pi's; one at work and one at home. I intend to use Pidora because Gambas3 does work on Pidora out of the box, but it's a huge pain to make it work on Raspbian; so far I could do it only once despite several OS reinstalls. The downside is that Raspbian has good TL-WN725N v2 support as you have seen, but Pidora does not.jnavratil wrote:Does anyone have any advice for a Pidora user?
I'm running 3.12.26 kernel and pulled down the 5-Jul-14 driver. Insmod reported a bad format.
I downloaded source from //github.com/lwfinger/rtl8188eu.git and tried to compile it. I received multiple
"LINUX_VERSION_CODE" is not defined [-Wundef]
"KERNEL_VERSION" is not defined [-Wundef]
errors.
Any thoughts?
Code: Select all
#!/bin/bash
# Get linux source code, prepare config files and create symlinks
VERSION=`uname -r | awk -F'.' '{print $1"."$2}'`
cd ~
wget https://codeload.github.com/raspberrypi/linux/tar.gz/rpi-${VERSION}.y -O rpi-${VERSION}.y.tar.gz
sudo tar zxf rpi-${VERSION}.y.tar.gz -C /usr/src/
cd /usr/src/linux-rpi-${VERSION}.y/
sudo bash -c "zcat /proc/config.gz > /usr/src/linux-rpi-${VERSION}.y/.config"
# In the next step you may be prompted questions about the configuration
# if your /proc/config.gz does not answer them (new features for example)
sudo make oldconfig
sudo make modules_prepare
sudo wget https://github.com/raspberrypi/firmware/raw/master/extra/Module.symvers
sudo ln -s /usr/src/linux-rpi-${VERSION}.y /lib/modules/`uname -r`/source
sudo ln -s /usr/src/linux-rpi-${VERSION}.y /lib/modules/`uname -r`/build
# Optional
#sudo ln -s /usr/src/linux-rpi-${VERSION}.y /usr/src/linux-`uname -r`
#sudo ln -s /usr/src/linux-rpi-${VERSION}.y /usr/src/linux
# Get driver source, compile, install and load it
cd ~
git clone https://github.com/lwfinger/rtl8188eu.git
cd rtl8188eu
# This wil take around 20 minutes
make all
sudo make install
# After this step you should have those new files installed:
# /lib/modules/`uname -r`/kernel/drivers/net/wireless/8188eu.ko
# /lib/firmware/rtlwifi/rtl8188eufw.bin
sudo modprobe 8188eu
# Remove driver and linux source code to recover some space (around 700MB)
# Leave those lines commented if you want to keep the code for future compilations
#sudo rm /lib/modules/`uname -r`/source
#sudo rm /lib/modules/`uname -r`/build
#sudo rm /usr/src/linux-`uname -r`
#sudo rm /usr/src/linux
#sudo rm -R /usr/src/linux-rpi-${VERSION}.y
#cd ~
#rm rpi-${VERSION}.y.tar.gz
#rm -R rtl8188eu
Code: Select all
~/rtl8188eu/include/usb_ops.h (41)
~/rtl8188eu/os_dep/os_intfs.c (655, 716, 1033) (655 was a little bit different, I had to comment the whole #IF)
~/rtl8188eu/os_dep/xmit_linux.c (120)
~/rtl8188eu/os_dep/recv_linux.c (198)
~/rtl8188eu/core/rtw_mlme.c (1615)
~/rtl8188eu/core/rtw_xmit.c (1685, 1873)
Code: Select all
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36)
(compiler compiles this section if your linux version is 2.6.26 or newer)
#else
(compiler compiles this section if your linux version is older than 2.6.26)
#endif
Code: Select all
/* #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36) */
(compiler compiles this section if your linux version is 2.6.26 or newer)
/* #else
(compiler compiles this section if your linux version is older than 2.6.26)
#endif */
Hi, sorry for delay.MrEngman wrote:First, there are several firmware files in the /lib/firmware/rtlwifi directory. They are for other wifi adaptors and will not cause problems.Celeste wrote:Hi, I done this but reboot is very slowly with WiFi dongle inserted in the hub usb.MrEngman wrote:Hi guys,
If you update to 3.18.xx+ there is a version of the driver included in the image so you don't need to download a new driver, however, it needs a separate firmware file downloading and installing.
You can download and install the driver firmware file with the single commandYou will only need to do this once as it does not need updating when the linux version is updated. Also you will not need to load a new driver whenever you update the linux version as the new driver is now included in the code.Code: Select all
sudo wget https://github.com/lwfinger/rtl8188eu/raw/c83976d1dfb4793893158461430261562b3a5bf0/rtl8188eufw.bin -O /lib/firmware/rtlwifi/rtl8188eufw.bin
Once you have downloaded the firmware file reboot the Pi to bring up the wifi.
MrEngman
In wpa_gui adapter doesn't appear and blue LED doesn't flash.
In /lib/firmware/rtlwifi file rtl8188eufw.bin is present but with many others (8712, 8192).
Have you ideas about?
Second, if you have edited the /etc/network/interfaces file then the GUI will probably not see your wifi adapter. Change the /etc/network/interfaces file back to the original default settings and you should then see it in the GUI. The default isFinally, I don't know why you should find it slow on booting. My Pi is OK and does not appear to have any problems with this driver and wifi module.You could take a look here to see if anyone else has your problem and if they have sorted it out or you could post an issue yourself about your problem.Code: Select all
auto lo iface lo inet loopback iface eth0 inet dhcp allow-hotplug wlan0 iface wlan0 inet manual wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf iface default inet dhcp
MrEngman
I also had that same problem. Right after running raspi-update my Pi took forever to boot. It was so slow after booting that I couldn't even shut it down by command (sudo shutdown - now), and had to unplug it.MrEngman wrote:Finally, I don't know why you should find it slow on booting. My Pi is OK and does not appear to have any problems with this driver and wifi module.You could take a look here to see if anyone else has your problem and if they have sorted it out or you could post an issue yourself about your problem.
I experienced the same. Setting this into /etc/modprobe.d/r8188eu.conf seems to improve it a little bit:jayemm96 wrote:Hi
After updating to 3.18.3+ and installing the driver (thanks MrEngMan) my Pi disconnects from the network every few hours and I need to restart the networking service. Any ideas?
Thanks
Code: Select all
options r8188eu rtw_power_mgnt=0 rtw_enusbss=0
I experienced the same. Setting this into /etc/modprobe.d/r8188eu.conf seems to improve it a little bit:jayemm96 wrote:Hi
After updating to 3.18.3+ and installing the driver (thanks MrEngMan) my Pi disconnects from the network every few hours and I need to restart the networking service. Any ideas?
Thanks
Code: Select all
options r8188eu rtw_power_mgnt=0 rtw_enusbss=0
have you tryed reading one of the post in the last i'd say 3 pages?nursalam wrote:is there any for 3.18.5+? coz im kinda in trouble right now
i'm not sure i want to know the translation lolorlexy wrote:Да блин. Это офигенная новость!![]()
![]()
![]()
really. Finally apt-get upgrade is no longer a nightmareGreat news!!!
I tried that as well but it was not nearly as stable as the older drivers. Are you running without a powered USB hub as well? And what power supply do you have? I am beginning to think it is a power issue (wouldn't be the firstI experienced the same. Setting this into /etc/modprobe.d/r8188eu.conf seems to improve it a little bit:
From what I've read online this disables power management and USB suspend for the dongle.Code: Select all
options r8188eu rtw_power_mgnt=0 rtw_enusbss=0
It improved a lot but it still doesn't work as well as the off-kernel driver.
I tried to compile the off-kernel one and it compiles but it panic'ed when loading.
I'll revert to the firmware with 3.12 kernel.
What I do know is that the other driver compiles but panics when loading
Code: Select all
root@Volumio:~# uname -a
Linux Volumio 3.12.26+ #702 PREEMPT Wed Aug 6 17:43:49 BST 2014 armv6l GNU/Linux
root@Volumio:~# lsusb
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 0bda:8179 Realtek Semiconductor Corp.
Code: Select all
3.12.26+ #702, #703 - 8188eu-20140705.tar.gz
Code: Select all
[ 3.296050] usb 1-1.5: new high-speed USB device number 4 using dwc_otg
[ 3.426650] usb 1-1.5: New USB device found, idVendor=0bda, idProduct=8179
[ 3.435230] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.444763] usb 1-1.5: Product: 802.11n WLAN NIC
[ 3.451106] usb 1-1.5: Manufacturer: Realtek
[ 3.457076] usb 1-1.5: SerialNumber: 000B819783AA
Code: Select all
root@Volumio:~# ifconfig wlan0 up
Code: Select all
[ 290.660730] usb 1-1.5: USB disconnect, device number 4
[ 290.838138] ==> rtl8188e_iol_efuse_patch
[ 291.008759] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 291.017353] RTL871X: indicate disassoc
[ 291.023824] RTL871X: rtw_cmd_thread: DriverStopped(0) SurpriseRemoved(1) break at line 475
I have the 148f:7601 with 3.18.5+ 748 (dated 4th Feb). Added lwfinger but GUI does not see the adapter. lsusb shows it is there and the interfaces file is as you have it above. I had been using another adapter which added the SSID and pwd to wpa_supplicant.conf. Still the GUI will not see the adapter. If I try sudo ifup wlan0 it states the daemon failed to start and that there is no such file as wpa_ctrl_open. If you already have working wpa_supplicant from other adapters do you need to 'clear' anything for the new adapters to work with the GUI or CLI?MrEngman wrote:First, there are several firmware files in the /lib/firmware/rtlwifi directory. They are for other wifi adaptors and will not cause problems.Celeste wrote:Hi, I done this but reboot is very slowly with WiFi dongle inserted in the hub usb.MrEngman wrote:Hi guys,
If you update to 3.18.xx+ there is a version of the driver included in the image so you don't need to download a new driver, however, it needs a separate firmware file downloading and installing.
You can download and install the driver firmware file with the single commandYou will only need to do this once as it does not need updating when the linux version is updated. Also you will not need to load a new driver whenever you update the linux version as the new driver is now included in the code.Code: Select all
sudo wget https://github.com/lwfinger/rtl8188eu/raw/c83976d1dfb4793893158461430261562b3a5bf0/rtl8188eufw.bin -O /lib/firmware/rtlwifi/rtl8188eufw.bin
Once you have downloaded the firmware file reboot the Pi to bring up the wifi.
MrEngman
In wpa_gui adapter doesn't appear and blue LED doesn't flash.
In /lib/firmware/rtlwifi file rtl8188eufw.bin is present but with many others (8712, 8192).
Have you ideas about?
Second, if you have edited the /etc/network/interfaces file then the GUI will probably not see your wifi adapter. Change the /etc/network/interfaces file back to the original default settings and you should then see it in the GUI. The default isFinally, I don't know why you should find it slow on booting. My Pi is OK and does not appear to have any problems with this driver and wifi module.You could take a look here to see if anyone else has your problem and if they have sorted it out or you could post an issue yourself about your problem.Code: Select all
auto lo iface lo inet loopback iface eth0 inet dhcp allow-hotplug wlan0 iface wlan0 inet manual wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf iface default inet dhcp
MrEngman