A. Check Your WiFi Adapter
Run in Terminal:
lspci | grep -i network
or for USB WiFi:
lsusb
Look for your WiFi chipset (e.g., Intel, Realtek, Broadcom).
B. Install Missing Drivers
For Intel WiFi (Most Common)
sudo apt install firmware-iwlwifi
sudo modprobe -r iwlwifi && sudo modprobe iwlwifi
For Realtek (RTL8821CE, RTL8723DE, etc.)
sudo apt install rtl8821ce-dkms
sudo reboot
For Broadcom (BCM43XX)
sudo apt install bcmwl-kernel-source
sudo modprobe wl
📌 Still no WiFi? Try Step 4.