Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

[PROBLEM] TP-Link TL-WN725N unable to get wifi working
Thank you for your donation

Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Problem: TP-Link TL-WN725N unable to get wifi working
18th Oct, 2014, 04:57 AM
Post: #1
Maylo Offline
Registered
Posts: 4
Joined: Oct 2014
Reputation: 0
TP-Link TL-WN725N unable to get wifi working
I looked through all the other topics regarding that specific wifi dongle but nothing worked. I'm on RC3 3.15.8+ kernel.

What i tried:

- Scanning for Network (no SSID's found)
-manually adding SSID and password through xbian-config (Cannot connect to network.)

Additional:
-wifi dongle is ok. it works on my laptop and also it worked in openelec

lsusb:
Code:
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.

ifconfig:
Code:
eth0      Link encap:Ethernet  HWaddr B8:27:EB:F5:56:B2
          inet addr:192.168.2.12  Bcast:192.168.2.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3466 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3058 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:2197707 (2.0 MiB)  TX bytes:553458 (540.4 KiB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:43 errors:0 dropped:0 overruns:0 frame:0
          TX packets:43 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:2529 (2.4 KiB)  TX bytes:2529 (2.4 KiB)

thanks for your help!
Find all posts by this user
Quote this message in a reply
18th Oct, 2014, 06:06 AM
Post: #2
Uhsac Offline
Registered
Posts: 3
Joined: Oct 2014
Reputation: 0
RE: TP-Link TL-WN725N unable to get wifi working
Same problem for me !
Find all posts by this user
Quote this message in a reply
19th Oct, 2014, 04:07 AM
Post: #3
IriDium Offline
Inquisitor
******
Posts: 2,025
Joined: Jan 2013
Reputation: 170
RE: TP-Link TL-WN725N unable to get wifi working
Can you post the output of /etc/network/interfaces

and also the output of dmesg via http://www.pastebin.com

Please read before you post
How to post a log file

If you liked my help, click on "Thanks" to show your appreciation.
Find all posts by this user
Quote this message in a reply
19th Oct, 2014, 06:58 AM
Post: #4
Maylo Offline
Registered
Posts: 4
Joined: Oct 2014
Reputation: 0
RE: TP-Link TL-WN725N unable to get wifi working
sure, my bad i didnt post that at the first place. here you go:

/etc/network/interfaces
Code:
auto lo
iface lo inet loopback

iface eth0 inet dhcp

auto wlan0
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.2.12
netmask 255.255.255.0
gateway 192.168.2.1

and my dmesg here

also the led on my adapter does not even blink. if that matters anyway
Find all posts by this user
Quote this message in a reply
19th Oct, 2014, 07:54 AM
Post: #5
menakite Offline
Management
******
Posts: 175
Joined: Apr 2014
Reputation: 27
RE: TP-Link TL-WN725N unable to get wifi working
Can you try
Terminal
sudo mkdir /lib/firmware/rtlwifi; sudo wget -O /lib/firmware/rtlwifi/rtl8188efw.bin https://github.com/OpenELEC/wlan-firmware/blob/master/firmware/rtlwifi/rtl8188efw.bin?raw=true
and reboot.
Find all posts by this user
Quote this message in a reply
19th Oct, 2014, 08:09 PM
Post: #6
Uhsac Offline
Registered
Posts: 3
Joined: Oct 2014
Reputation: 0
RE: TP-Link TL-WN725N unable to get wifi working
This don't work for me, it still don't appear with ifconfig
Find all posts by this user
Quote this message in a reply
19th Oct, 2014, 10:40 PM
Post: #7
Maylo Offline
Registered
Posts: 4
Joined: Oct 2014
Reputation: 0
RE: TP-Link TL-WN725N unable to get wifi working
it appears that this does not work either.

EDIT:

i finally got it working by running:
thanks to @menakite
Code:
sudo mkdir /lib/firmware/rtlwifi; sudo wget -O /lib/firmware/rtlwifi/rtl8188efw.bin https://github.com/OpenELEC/wlan-firmware/blob/master/firmware/rtlwifi/rtl8188efw.bin?raw=true

sudo wget -O /lib/firmware/rtlwifi/rtl8188eufw.bin https://github.com/OpenELEC/wlan-firmware/blob/master/firmware/rtlwifi/rtl8188eufw.bin?raw=true

and editing my /etc/network/interfaces to:

Code:
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

and my /etc/wpa_supplicant/wpa_supplicant.conf to:

Code:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
        ssid="NETWORK_NAME"
        psk="NETWORK_PASSWORD"
}

thanks for the help guys!
Find all posts by this user
Quote this message in a reply
19th Oct, 2014, 11:30 PM
Post: #8
menakite Offline
Management
******
Posts: 175
Joined: Apr 2014
Reputation: 27
RE: TP-Link TL-WN725N unable to get wifi working
Yep, that'd be the next test.

Unfortunately Debian Wheezy (stable release) is not packaging this firmware - it's only available in the next stable - so installing firmware-realtek doesn't have any effect.
Find all posts by this user
Quote this message in a reply
20th Oct, 2014, 03:14 AM
Post: #9
Maylo Offline
Registered
Posts: 4
Joined: Oct 2014
Reputation: 0
RE: TP-Link TL-WN725N unable to get wifi working
yea, i noticed. by the way for some strange reason i cannot update my distro. it says that the sources are unreachable. is there any solution to that?
Find all posts by this user
Quote this message in a reply
20th Oct, 2014, 09:54 PM
Post: #10
Uhsac Offline
Registered
Posts: 3
Joined: Oct 2014
Reputation: 0
RE: TP-Link TL-WN725N unable to get wifi working
For this you have to change your repo. Check this http://www.xbian.org/faq/

For a wep password do you know how to do ?
Find all posts by this user
Quote this message in a reply
17th Dec, 2014, 12:39 AM
Post: #11
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: TP-Link TL-WN725N unable to get wifi working
@Uhsac

if you manage the fw download to /lib/firmware folder then wlan0 should appear after reboot and use xbian-config settings network to configure

the trick is only with missing .fw

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Possibly Related Threads...
Thread: Author Replies Views: Last Post
  TP-Link TL-WN725N not recognized bergfruehling 56 270,199 31st May, 2017 04:45 PM
Last Post: katesey
  Won't boot if I put the WiFi Tp-Link USB camadas 7 19,824 23rd Jul, 2015 05:43 AM
Last Post: camadas
  TP-LINK TL-WN725N 5Ghz ErrK 4 26,077 28th Jul, 2014 04:07 AM
Last Post: ErrK
  [SOLVED] unable to connect when playing/stream wifi roffer 7 19,681 20th Mar, 2013 07:00 AM
Last Post: roffer

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 21st May, 2025, 09:11 AM Powered By MyBB, © 2002-2025 MyBB Group.