How to connect with wifi ?
#16
Hi,

I am seeing the same issue on a fresh install of your debian build.  I previously installed Longsleep's Ubuntu build and the wifi worked perfectly and so I think that it has something to do with this image.

We appear to be getting an IP from DHCP.  The name of the interface is "rename4" which also seems odd to me.  Below is the output from uname -a, ifconfig, iwconfig, interfaces and for the heck of it, wpa-supplicant.conf.  Note that I modified both interfaces and wpa-supplicant.conf using settings that worked in the Ubuntu build.

uname -a

Code:
Linux pine64pro 3.10.101-0-pine64-longsleep #39 SMP PREEMPT Sat May 7 12:39:25 CEST 2016 aarch64 GNU/Linux

ifconfig

Code:
eth0      Link encap:Ethernet  HWaddr 36:c9:e3:f1:b8:05
          inet6 addr: fe80::34c9:e3ff:fef1:b805/64 Scope:Link
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:5 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:670 (670.0 B)
          Interrupt:114

eth0:avahi Link encap:Ethernet  HWaddr 36:c9:e3:f1:b8:05
          inet addr:169.254.9.92  Bcast:169.254.255.255  Mask:255.255.0.0
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          Interrupt:114

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:243 errors:0 dropped:0 overruns:0 frame:0
          TX packets:243 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:21008 (20.5 KiB)  TX bytes:21008 (20.5 KiB)

rename4   Link encap:Ethernet  HWaddr 34:c3:d2:96:84:85
          inet addr:192.168.0.134  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::36c3:d2ff:fe96:8485/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:695 errors:0 dropped:0 overruns:0 frame:0
          TX packets:313 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:127884 (124.8 KiB)  TX bytes:56683 (55.3 KiB)

iwconfig

Code:
eth0      no wireless extensions.

rename4   IEEE 802.11bgn  ESSID:"MyNetworkName"  Nickname:"<WIFI@REALTEK>"
          Mode:Managed  Frequency:2.462 GHz  Access Point: C4:E9:84:E0:B9:42
          Bit Rate:150 Mb/s   Sensitivity:0/0
          Retry:off   RTS thr:off   Fragment thr:off
          Encryption key:****-****-****-****-****-****-****-****   Security mode:open
          Power Management:off
          Link Quality=98/100  Signal level=-45 dBm  Noise level=0 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

sit0      no wireless extensions.

lo        no wireless extensions.

wlan1     unassociated  Nickname:"<WIFI@REALTEK>"
          Mode:Managed  Frequency=2.412 GHz  Access Point: Not-Associated
          Sensitivity:0/0
          Retry:off   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality=0/100  Signal level=0 dBm  Noise level=0 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0


interfaces

Code:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Include files from /etc/network/interfaces.d:
#source-directory /etc/network/interfaces.d

# Primary Ethernet
auto eth0
iface eth0 inet dhcp

#wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface pine64 inet dhcp

# Disable Secondary Wireless Lan (8723bs Has Two Interfaces)
iface wlan1 inet manual

wpa_supplicant.conf

Code:
network={
       ssid="MyNetworkName"
       psk="MyNetworkKey"
       proto=RSN
       key_mgmt=WPA-PSK
       pairwise=CCMP
       group=CCMP
       auth_alg=OPEN
       priority=9
       id_str="pine64"
}
  Reply


Messages In This Thread
How to connect with wifi ? - by yirmidokuz - 04-27-2016, 02:06 AM
RE: How to connect with wifi ? - by baryluk - 04-27-2016, 02:41 PM
RE: How to connect with wifi ? - by yirmidokuz - 04-29-2016, 12:18 AM
RE: How to connect with wifi ? - by Bio - 04-29-2016, 12:00 PM
RE: How to connect with wifi ? - by yirmidokuz - 04-30-2016, 09:02 AM
RE: How to connect with wifi ? - by Webtest - 05-07-2016, 07:12 AM
RE: How to connect with wifi ? - by Webtest - 05-07-2016, 11:45 AM
RE: How to connect with wifi ? - by Webtest - 05-07-2016, 01:52 PM
RE: How to connect with wifi ? - by yirmidokuz - 05-11-2016, 12:47 AM
RE: How to connect with wifi ? - by yirmidokuz - 05-11-2016, 12:52 PM
RE: How to connect with wifi ? - by yirmidokuz - 05-13-2016, 12:00 PM
RE: How to connect with wifi ? - by jl_678 - 05-16-2016, 09:36 AM
RE: How to connect with wifi ? - by jl_678 - 05-16-2016, 12:09 PM
RE: How to connect with wifi ? - by jl_678 - 05-16-2016, 02:12 PM
RE: How to connect with wifi ? - by miffy_bf - 05-22-2016, 10:11 AM
RE: How to connect with wifi ? - by jl_678 - 05-22-2016, 01:49 PM
RE: How to connect with wifi ? - by miffy_bf - 05-22-2016, 08:49 PM
RE: How to connect with wifi ? - by jl_678 - 05-23-2016, 09:59 AM
RE: How to connect with wifi ? - by miffy_bf - 05-23-2016, 11:22 PM
RE: How to connect with wifi ? - by jl_678 - 05-24-2016, 07:20 AM
RE: How to connect with wifi ? - by JamesHarris - 05-25-2016, 05:55 PM
RE: How to connect with wifi ? - by miffy_bf - 05-25-2016, 11:20 PM
RE: How to connect with wifi ? - by miffy_bf - 05-26-2016, 04:44 AM
RE: How to connect with wifi ? - by jl_678 - 05-28-2016, 07:46 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Q4OS WiFi Dongle not working cheezmeister 3 4,802 04-07-2017, 08:01 AM
Last Post: iccoldbeer
  Wifi connect through terminal? cheezmeister 0 2,075 04-02-2017, 09:44 AM
Last Post: cheezmeister
  Bringing up wifi dongle m16bishop 2 4,285 07-04-2016, 03:24 PM
Last Post: m16bishop

Forum Jump:


Users browsing this thread: 1 Guest(s)