Ubuntu Pastebin

Paste from TJ at Tue, 18 Aug 2015 21:32:47 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# commands to collect system info about the Wireless LAN device state:

for n in /sys/class/net/wlan*/*; do [ -f $n ] && echo $n = $(cat $n); done

for n in /sys/class/rfkill/*/*; do [ -f $n ] && echo $n = $(cat $n); done

rfkill list


# commannds to try

sudo rfkill unblock all

iwconfig


# manual scan for access point

sudo iwlist wlan0 scan
Download as text