MediocreGus
Posts: 1
Joined: Sun Apr 28, 2013 3:32 pm

I need help setting up WiFi.

Sun Apr 28, 2013 3:38 pm

Hi all,

I have a TP-Link TL-WN725N WiFi adapter which I bought for my Raspberry Pi, which is running Raspbian. If somebody could guide me through the process of setting it up, I will love you FOREVER.

I'm a complete noob at this though, and I'm going to need to be guided through every step of the way. I'm talking every console command and every config file here!

Also, I've already had a couple of shots at this. I'll try to get all of the stuff I played around with back to how it was.

Thanks,
Gus.

timmoore46
Posts: 266
Joined: Tue Jul 17, 2012 4:36 pm

Re: I need help setting up WiFi.

Sun Apr 28, 2013 8:06 pm

I've got a WiFi adaptor working fine.

Pm me tomorrow and I'll dig out the details. It on an earlier thread of mine.

: )

Tim

User avatar
aelsas
Posts: 64
Joined: Fri Jul 06, 2012 11:23 pm
Location: Frankfurt, Germany
Contact: Website

Re: I need help setting up WiFi.

Sun Apr 28, 2013 9:02 pm

Hi,

as it has the rtl8192cu chipset it should run out of the box.

Just plug it in and start Wifi Config in LXDE ...

Best regards

Alex

User avatar
mline
Posts: 1420
Joined: Sun Jan 27, 2013 1:47 pm
Location: Austria, Vienna

Re: I need help setting up WiFi.

Sun Apr 28, 2013 9:12 pm

Edit file /etc/wpa_supplicant/wpa_supplicant.conf

Original (don't change this):

Code: Select all

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
If you use WPA2 add this below:

Code: Select all

network={
        ssid="YOUR SSID HERE"
        scan_ssid=1
        proto=RSN
        key_mgmt=WPA-PSK
        pairwise=CCMP
        group=TKIP
        psk="YOUR KEY HERE"
}
If you use WPA change your settings to this:

Code: Select all

proto=WPA
pairwise=TKIP
group=TKIP
If (WPA2) don't work try this combination:

Code: Select all

pairwise=CCMP
group=CCMP
or this:

Code: Select all

pairwise=TKIP
group=TKIP
If you want to use a static ip edit file /etc/network/interfaces

Original:

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
Change last line to:

Code: Select all

iface default inet static
Add this lines below (the addresses must fit to your network!):

Code: Select all

address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
All files need to be edited with command "sudo nano FILENAME". If you edit this files on a running Pi you need to reboot to apply your changes.

Sorry for my bad english ;)
<~~>

timmoore46
Posts: 266
Joined: Tue Jul 17, 2012 4:36 pm

Re: I need help setting up WiFi.

Mon Apr 29, 2013 9:45 am

Total easy fix here !

As Dongles cost less than a fiver, changing to dongle that works out of box makes sense !

http://www.raspberrypi.org/phpBB3/viewt ... 24#p314524

also

http://cgi.ebay.co.uk/ws/eBayISAPI.dll? ... OU:GB:3160

(the easy fix is even linked into the listing.)

:D :D :D

Tim

User avatar
pluggy
Posts: 3635
Joined: Thu May 31, 2012 3:52 pm
Location: Barnoldswick, Lancashire,UK
Contact: Website

Re: I need help setting up WiFi.

Tue Apr 30, 2013 6:52 am

Slightly cheaper non Pi 'branded' but with identical chipset :

http://www.ebay.co.uk/itm/261166708533? ... 1497.l2649
Don't judge Linux by the Pi.......
I must not tread on too many sacred cows......

rasberrypip
Posts: 2
Joined: Sat Apr 27, 2013 3:30 pm

Re: I need help setting up WiFi.

Wed May 01, 2013 9:13 pm

Hi,
I have Raspian Wheezy with WiFi config icon on the desktop. I bought the Realtek dongle from Pi Hut. Thought I had bought a duff one but then inserted the dongle into 4 port powered hub clicked on WiFi Config and entered SSID and password and Bingo, away we went. Hope this helps.

Return to “General discussion”