Wifi on Linux


get back Wlan0 name

# cat /etc/udev/rules.d/80-net-name-slot.rules

net.ifnames=0

unblock network

# rfkill # view all devices
# rfkill unblock bluetooth
# rfkill unblock wlan

active network

Use ip command to bring up the wifi interface:

# sudo ip link set wlan0 up

Or ifconfig:

# ifconfig wlan0 up

Wifi info

# iwlist wlan0 scan

get Signal and name of SSID

# iw dev wlan0 link

ad-hoc

Check if your Wifi is supported by `AP``

# iw phy |grep -iA6 'Supported interface modes:'
  • use hostapd
  • use create_ap