Linux/Wifi: Difference between revisions
< Linux
No edit summary |
|||
Line 51: | Line 51: | ||
</blockquote> | </blockquote> | ||
* install WPA support | |||
<blockquote> | |||
<pre> | |||
sudo apt install wpasupplicant | |||
</pre> | |||
</blockquote> | |||
* /etc/wpa_supplicant/wpa_supplicant.conf | |||
<blockquote> | |||
<pre> | |||
network={ | |||
ssid="xxxSSIDxxx" | |||
psk="xxxPASSWORDxxx" | |||
} | |||
</pre> | |||
</blockquote> | |||
ex | |||
== Troubleshooting == | == Troubleshooting == |
Revision as of 17:10, 12 February 2018
Get infos
- list network hardware
lshw -class network
- show all network devices
ifconfig -a
- get wifi information
iwconfig
- bring interface up
ifconfig wlan0 up
- scan for wifi networks
iwlist wlan0 scan | grep ESSID
configuration
- get country information
iw reg get
- set country information
iw reg set DE
- install WPA support
sudo apt install wpasupplicant
- /etc/wpa_supplicant/wpa_supplicant.conf
network={ ssid="xxxSSIDxxx" psk="xxxPASSWORDxxx" }
ex
Troubleshooting
- airplane mode?
rfkill list all