Connecting a laptop to a wireless network is a challenge every user faces. It would seem simple: enter the password and you're done. But in practice, problems often arise: the laptop doesn't detect the network, requires drivers, returns an authentication error, or connects but doesn't have internet access. In this article, we'll cover all the methods for connecting to Wi-Fi on different operating systems and troubleshoot common issues.
We'll cover not only the basic settings, but also the nuances that are rarely covered: how to connect to a hidden network, what to do if your laptop doesn't support modern standards Wi-Fi 6, how to bypass public network restrictions, and why a simple router reboot sometimes helps. These instructions are relevant for Windows 10/11, macOS Ventura/Sonoma And Linux (Ubuntu, Mint, Fedora).
If you are in a hurry, take advantage of it. quick instructions at the end of the article. For those who want a more detailed understanding, we've prepared step-by-step guides with images, videos, and proven advice from network engineers.
1. Preparation: What you need to know before connecting
Before you try to connect to Wi-Fi, check three key points:
- 📡 The router is turned on and distributing the networkThe wireless network indicator (usually indicated by an antenna icon) should be on or blinking. If it's off, press the button.
Wi-Fion the router body or check the settings in the web interface (usually192.168.1.1or192.168.0.1). - 🔑 Do you have a password for the network?If you're connecting to someone else's network (for example, at a cafe), ask the administrator for the password. For a home network, the password can be found on the router's sticker or in its settings.
- 💻 The laptop's Wi-Fi adapter is turned on.Most models have a physical switch or key combination (e.g.
Fn + F2on Lenovo,Fn + F12on HP). If the Wi-Fi indicator on the laptop is not lit, the adapter is disabled.
Important: If your laptop is older than 2015, it may not support modern Wi-Fi standards (e.g., 802.11ax). In this case, the network will be slower or only connect at the 2.4 GHz frequency.
Also pay attention to router operating modeSome models (for example, ASUS RT-AX88U or TP-Link Archer AX6000) By default, two networks are distributed: 2.4 GHz and 5 GHz. If the laptop does not see the 5 GHz network, try connecting to a network with a name ending in _2G or 2.4G.
2. Connecting to Wi-Fi on Windows 10 and 11
IN Windows Connecting to Wi-Fi takes no more than a minute if everything is configured correctly. Let's look at two methods: via the taskbar and via system settings.
Method 1: Via the Wi-Fi tray icon
This is the fastest method:
- Click on the icon Wi-Fi (or network) in the lower right corner of the screen (next to the clock).
- Select the desired network from the list of available networks. If it is not there, click
Hidden network(if you know the name). - Enter your password and click
Connect. - If prompted
Do you want this computer to be discoverable..., selectYes(for home network) orNo(for public).
Method 2: Through “Options”
If the Wi-Fi icon is missing or not working:
- Open
Start → Settings → Network & Internet → Wi-Fi. - Make sure the switch is on
Wi-Fiincluded. - Click
Show available networksand choose yours. - Enter the password and save.
If after connecting an exclamation mark and the inscription appears No internet access, try:
- 🔄 Reboot the router (pull the plug for 30 seconds).
- 🖥️ Run troubleshooting: Right-click the Wi-Fi icon →
Troubleshooting. - 🔧 Reset network settings:
Settings → Network & Internet → Network reset.
Check if Wi-Fi is enabled on your laptop|Make sure your router is distributing the network|Try connecting to a 2.4 GHz network if 5 GHz is not visible|Update your network card drivers (see section 4)-->
3. Connecting on macOS (Ventura, Sonoma, and later)
On MacBook The connection process is even simpler, but there are some nuances. For example, if you've previously connected to this network, macOS may automatically reconnect even if the password has changed.
To connect:
- Click on the icon Wi-Fi in the top panel (on the right).
- Select the desired network. If it is not there, click
Other networks.... - Enter your password and click
Connect. - If an error occurs
Unable to connect to the network, try deleting the network from saved ones:System Preferences → Network → Wi-Fi → Advanced → Remove network (-)
If macOS keeps losing connection, check your Energy Saver settings:
- Open
System Preferences → Battery. - Uncheck the box
Enable power saving mode(sometimes it turns off Wi-Fi to save battery).
Attention: on some models MacBook Pro (2016–2020) Wi-Fi issues can be caused by hardware defects. If the network connection disappears even after a factory reset, contact a service center—the Wi-Fi module may need to be replaced.
4. Connecting to Wi-Fi on Linux (Ubuntu, Mint, Fedora)
IN Linux The connection process depends on the desktop environment you are using (GNOME, KDE, XFCE) and the network manager. Let's consider the universal method through nmcli (NetworkManager) and graphical interface.
Method 1: Via a graphical interface (GNOME/KDE)
If you have Ubuntu or Linux Mint:
- Click on the network icon in the upper right corner.
- Select the desired network and enter the password.
- If the network is not listed, click
Connect to a hidden networkand enter the name (SSID) manually.
Method 2: Via terminal (nmcli)
If the GUI does not work:
# View available networksnmcli dev wifi list
Connect to the network (replace "SSID" and "password")
nmcli dev wifi connect "SSID" password "password"
If the network is hidden
nmcli dev wifi connect "SSID" password "password" hidden yes
If there is no internet after connecting, check your DNS settings:
sudo nano /etc/resolv.conf
Add the following lines:
nameserver 8.8.8.8
nameserver 1.1.1.1
Attention: on some distributions (for example, Arch Linux) NetworkManager It is not installed by default. Install it with the command:
sudo pacman -S networkmanager
What to do if Linux doesn't see the Wi-Fi adapter?
If the team iwconfig If your adapter isn't showing up, it's likely because the drivers are missing. For most adapters (e.g., Broadcom or Realtek) you need to install proprietary drivers:
- Connect your laptop to the Internet via cable.
- Run the command
ubuntu-drivers devices(for Ubuntu) orlspci -k | grep -A 3 -i networkto search for the adapter model. - Install the driver:
sudo apt install firmware-recommended-package.
After rebooting, the adapter should work.
5. Driver issues: the laptop doesn't see Wi-Fi
If your laptop doesn't detect any networks, the problem is most likely with the network card drivers. This is especially true for Windows after reinstalling the system or updating, as well as for Linux on new laptop models.
How to check and update drivers:
On Windows
- Open
device Manager(clickWin + X→device Manager). - Expand the tab
Network adapters. - Find the device with the names Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4).
- If there is an exclamation mark next to the device, right-click →
Update driver→Automatic search.
If the automatic search doesn't help, download the driver from the laptop manufacturer's website (not from Windows Update!):
- Lenovo:
support.lenovo.com - HP:
support.hp.com - Dell:
dell.com/support - ASUS:
asus.com/support
On Linux
For most adapters, it is enough to install the package firmware:
# For Debian/Ubuntusudo apt update
sudo apt install firmware-iwlwifi firmware-realtek
For Fedora
sudo dnf install kernel-firmware
If the adapter still doesn't work, check if it's supported in the kernel:
lspci -k | grep -A 3 -i network
| Adapter manufacturer | Common problems | Solution |
|---|---|---|
| Intel (AX200, AX210) | Wi-Fi 6 is not working, low speed | Update kernel to 5.15+ or install backport-iwlwifi |
| Broadcom (BCM43xx) | The adapter is not detected | Install broadcom-sta-dkms or firmware-b43-installer |
| Realtek (RTL8821CE) | Constant connection breaks | Disable power saving: sudo sed -i 's/wifi.powersave = 3/wifi.powersave = 2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf |
| Qualcomm Atheros (QCA6174) | Slow speed on 5 GHz | Update firmware via linux-firmware-git |
6. Connecting to a hidden Wi-Fi network
Hidden networks don't broadcast their network name (SSID), making them more difficult to connect to. This is often used in offices or public spaces for increased security. Here's how to connect on different operating systems:
Windows
- Open
Settings → Network and Internet → Wi-Fi. - Click
Manage known networks → Add new network. - Enter:
- Network name (SSID) is the exact name of the hidden network.
- Security type - usually
WPA2-PersonalorWPA3-Personal. - Password.
Connect automatically.macOS
- Click on the Wi-Fi icon in the menu bar →
Other networks.... - Enter the network name (SSID) and password.
- Select
Remember this network.
Linux (via nmcli)
nmcli dev wifi connect "SSID" password "password" hidden yes
Attention: If you connect to a hidden network in a public place (such as an airport), make sure it's an official network. Attackers often create hidden networks with names similar to legitimate ones to intercept data.
7. Connection to public networks (hotels, cafes, airports)
Public networks often require additional authentication through a browser (so-called captive portal). Even if you're connected to Wi-Fi, the internet won't work until you log in.
How to connect:
- Connect to the network (the password is usually indicated on the receipt or from the administrator).
- Open any browser (Chrome, Firefox, Edge).
- You should automatically see the authorization page. If not, try going to
1.1.1.1orneverssl.com. - Enter your details (room number, code from your receipt, email or social network).
- 🚫 The authorization page does not open: try a different browser or clear your cache (
Ctrl + Shift + Del). - ⏳ Constantly loading: Disable VPN or proxy in your browser settings.
- 🔒 Requires payment: Check with your administrator to see if the "premium access" option is enabled.
Typical problems and solutions:
Important: Never enter your bank card details or passwords for important accounts on public networks without a VPN. Use ProtonVPN, Windscribe or built-in VPN in the browser Opera.
8. Solving typical problems
If your laptop connects to Wi-Fi, but the internet doesn't work, or the network keeps dropping out, use these instructions:
| Problem | Possible cause | Solution |
|---|---|---|
| The laptop doesn't see any networks. | The Wi-Fi adapter is disabled or there are no drivers. | Check it out device Manager (Windows) or rfkill (Linux). Update your drivers. |
| Connects, but no internet access | Problems with DHCP or DNS | Reboot your router. Manually enter DNS. 8.8.8.8 And 1.1.1.1. |
| Slow Wi-Fi speed | 2.4 GHz channel congestion or weak signal | Reconnect to 5 GHz. Check your router's QoS settings. |
| Constant connection breaks | Adapter power saving or interference | Disable power saving mode for Wi-Fi. Change the channel on your router. |
| Error "Unable to connect to the network" | Incorrect password or incompatible security settings | Check your password. Change the security type on your router. WPA3 on WPA2. |
Attention: If the problem occurs only on one device, and the others connect fine, the laptop (drivers, settings) is to blame. If none of the devices work, the problem lies with the router or ISP.
⚡ Quick instructions: connection in 30 seconds
If you urgently need to connect to Wi-Fi, follow this algorithm:
- Make sure the Wi-Fi light on your router is on.
- On the laptop:
- 🪟 Windows: Click on the Wi-Fi icon → select the network → enter the password.
- 🍎 macOS: Wi-Fi icon in the menu bar → select network → password.
- 🐧 Linux: network icon → select network → password (or
nmcli dev wifi connect "SSID" password "password").
192.168.1.1).In 90% of cases, this is sufficient. If not, read the section Problem Solving.
❓ Frequently Asked Questions
My laptop can't see the 5 GHz network. What should I do?
This means your Wi-Fi adapter does not support the 5 GHz frequency. Check the adapter model in Device Manager (Windows) or via command lspci -k | grep -i network (Linux) If the adapter is older than 2012 (for example, Intel Centrino Wireless-N 1000), it only works at 2.4 GHz. Solutions:
- Connect to a 2.4 GHz network (usually has "2.4 GHz" in the name)
2Gor2.4). - Buy an external USB Wi-Fi adapter that supports 5 GHz (e.g. TP-Link Archer T4U).
- Update your drivers - sometimes this adds 5GHz support.
How to connect to Wi-Fi without a password (for example, in a hotel)?
If the network does not ask for a password, but requires authorization through a browser (captive portal), do the following:
- Connect to the network (no password needed).
- Open your browser and try to access any website (for example,
google.com). - You should see the authorization page. If not, enter it in the address bar.
1.1.1.1orcaptive.apple.com. - Enter the details (room number, code from the receipt, etc.).
If the page does not open, check the proxy settings in your browser (it should be No proxy).
Why is Wi-Fi slow on my laptop but fine on my phone?
There may be several reasons:
- 📶 The laptop is connected to 2.4 GHz, and the phone is connected to 5 GHz.Reconnect your laptop to a 5 GHz network (if supported).
- 🔋 Energy savingIn Windows, disable the option
Allow the computer to turn off this device to save powerin the Wi-Fi adapter properties. - 🛠️ Outdated driversUpdate them through
device Manageror from the manufacturer's website. - 📡 InterferenceMove closer to the router or change the channel on the router (for example, from 6 to 11).
Also check if your laptop is downloading anything in the background (updates, torrents).
Is it possible to connect to Wi-Fi without an adapter (for example, via a USB cable)?
No, a wireless adapter is required to connect to Wi-Fi. However, there are alternative ways to get internet on your laptop:
- 📱 USB tethering: connect your laptop to your smartphone via USB and turn it on
Modem modein the phone settings. - 🔌 Ethernet: connect your laptop to the router with a cable (if there is an RJ-45 port).
- 📡 External USB Wi-Fi adapter: Buy an adapter (eg TP-Link TL-WN725N) and connect it to the USB port.
If your laptop's built-in Wi-Fi module is broken, an external adapter is the simplest solution.
How do I find out my Wi-Fi password if I forgot it?
There are several ways:
- 📄 View on the router: The password is usually found on a sticker on the back or bottom.
- 🖥️ View on a connected device:
- Windows:
Settings → Network & Internet → Wi-Fi → Manage known networks → [your network] → Properties → Show password. - macOS:
System Preferences → Network → Wi-Fi → Advanced → Show Password. - Linux:
sudo cat /etc/NetworkManager/system-connections/[network_name].nmconnection | grep psk=.
- Windows:
- 🌐 Go to the router settings:
- Open in browser
192.168.1.1or192.168.0.1. - Enter login/password (usually
admin/adminor indicated on the router). - Find the section
WirelessorWi-Fi→Security→ fieldPasswordorPSK.
- Open in browser