Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Wifi does not connect
#2
You could try to set up wireless manually.

Check Wireless Interfaces:
iwconfig

Check if Wireless Interface is Up:
sudo ifconfig wlan0 up

Scan for Available Networks:
sudo iwlist wlan0 scan

Create a Configuration File for the Network:
sudo (nano or vim) /etc/wpa_supplicant.conf

network={
ssid="your_ssid"
psk="your_password"
}

Connect to the Wireless Network:
sudo wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf

Run the following command to request an IP address from the DHCP server:
sudo dhclient wlan0
Reply


Messages In This Thread
Wifi does not connect - by Pet3M0ss - 02-03-2024, 06:18 PM
RE: Wifi does not connect - by John - 02-03-2024, 09:25 PM
RE: Wifi does not connect - by Pet3M0ss - 02-06-2024, 04:40 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)