How to set up Wi-Fi on a computer: from choosing an adapter to a stable connection

Wireless internet is essential these days: it's needed for work, education, entertainment, and even smart home control. But what if your desktop PC or laptop doesn't have built-in Wi-Fi? Wi-Fi module No network reception? Setting up Wi-Fi on your computer is easier than it seems. In this article, we'll cover all the methods: from connecting an external adapter to configuring drivers and troubleshooting common issues.

It is important to understand that the process depends on the type of device. For laptops Often it is enough to enable the module in the BIOS or update the driver, and for desktop PCs You'll need to purchase a separate adapter. We'll cover both options, as well as the nuances for different operating systems. Windows 10/11 And LinuxIf you've never set up a network before, don't worry: the instructions are suitable even for beginners.

Before you begin, check if there's Wi-Fi coverage in your area. Sometimes the problem isn't your computer, but a weak router signal. If your neighbors have a network connection but you don't, let's get started!

📊 What kind of computer do you have?
Desktop PC without Wi-Fi
Laptop with built-in module
Laptop without module
Monoblock

1. Checking the presence of a Wi-Fi module in the computer

Before purchasing an adapter, make sure your device doesn't have a built-in module. This is especially true for laptops and all-in-one PCs, where Wi-Fi is often integrated into the motherboard.

IN Windows check it like this:

  1. Click Win + R, enter devmgmt.msc and press Enter.
  2. IN Device Manager expand the tab Network adapters.
  3. Look for names that mention Wireless, Wi-Fi, 802.11 or brands like Intel, Qualcomm Atheros, Broadcom.

If there are no such devices, there is no module. For Linux Run the following command in the terminal:

lspci | grep -i network

Or for USB adapters:

lsusb
⚠️ Attention: On some laptops, the Wi-Fi module may be disabled in the BIOS. If the adapter appears with an exclamation mark in Device Manager, check the BIOS settings (the "Enable" key). F2, Del or Esc at boot) - parameter Wireless LAN must be in position Enabled.

2. Choosing a Wi-Fi adapter for your PC

If there's no built-in module, you'll need an external adapter. There are three types:

  • 🖥️ USB adapters — the easiest to install. They connect to any available port and often require no drivers (plug-and-play). They're suitable for temporary use or when opening the PC case is not possible. Popular models: TP-Link TL-WN725N, ASUS USB-AC53 Nano.
  • 🔌 PCIe adapters - are inserted into the slot PCI Express on the motherboard. They provide a more stable connection and support modern standards. Wi-Fi 6 (802.11ax). Examples: TP-Link Archer TX3000E, Intel Wi-Fi 6 AX200.
  • 📡 M.2 adapters — miniature modules for laptops and compact PCs. Installed in a slot M.2 Key A/ESuitable for upgrading an old laptop: Intel Wireless-AC 9260.

When choosing, pay attention to:

  • 📶 Wi-Fi standard: 802.11n (up to 300 Mbps), 802.11ac (up to 1.3 Gbps), 802.11ax (Wi-Fi 6, up to 10 Gbps). For modern tasks, the minimum 802.11ac.
  • 🔄 Frequencies: 2.4 GHz (long-range signal, but subject to interference) and 5 GHz (faster, but smaller coverage area). A dual-band adapter is optimal.
  • 🔧 Driver support: For Linux Check compatibility on the manufacturer's website.
Adapter type Pros Cons Price (2026)
USB Easy installation, mobility It can get hot and takes up space. 500–2500 ₽
PCIe High speed, reliability Requires disassembling the PC 1500–5000 ₽
M.2 Compact, suitable for laptops More difficult to install, limited choice 2000–6000 ₽
⚠️ Attention: If your PC was built before 2015, check for an available slot. PCIe x1 or USB 3.0Older motherboards may not support modern adapters.

3. Installing a physical adapter

The process depends on the device type. Let's look at each option.

USB adapter

The easiest way:

  1. Connect the adapter to a free USB port (preferably USB 3.0 for high speed).
  2. Wait for the drivers to be installed automatically (in Windows 10/11 they are usually installed through Update Center).
  3. If the driver is not installed, download it from the manufacturer's website (more on this in the next section).

PCIe adapter

You will need to disassemble the system unit:

Turn off your PC and unplug the power cable|

Remove the side cover of the case|

Find an available PCIe x1 slot (usually black or white)|

Touch the metal part of the case to remove static electricity-->

  1. Insert the adapter into the slot PCIe x1 until it clicks.
  2. Secure it to the rear panel of the case with a screw.
  3. Connect the antennas (if included) to the connectors on the adapter.
  4. Close the case and turn on the PC.

M.2 adapter (for laptops)

The most difficult part, but even a beginner can handle it:

  1. Turn off the laptop, remove the battery (if possible).
  2. Unscrew the bottom cover (usually held on by 5-10 screws).
  3. Find a slot M.2 Key A/E (can be signed as WLAN).
  4. Insert the module at an angle of 30° and secure with a screw.
  5. Connect the antennas (usually black and white wires).

After installation, turn on your laptop and check if the new device is detected in Task Manager.

4. Installing and updating drivers

Without the correct drivers, the adapter will not work. Let's look at the process for Windows And Linux.

Windows 10/11

If the adapter is not detected automatically:

  1. Open device Manager (devmgmt.msc).
  2. Find the adapter in the section Network adapters or Other devices (if displayed as unknown).
  3. Right click → Update driverAutomatic search.

If automatic search does not help:

  1. Download the driver from the adapter manufacturer's website (for example, TP-Link, ASUS).
  2. Select your adapter model and OS version.
  3. Install the driver manually via device Manager (right click → Update driverSearch for drivers on this computer).

Linux (Ubuntu/Debian)

Most distributions install drivers automatically. If not:

sudo apt update

sudo apt install firmware-realtek # for Realtek adapters

sudo apt install firmware-iwlwifi # for Intel adapters

For adapters TP-Link Manual installation may be required:

git clone https://github.com/aircrack-ng/rtl8812au

cd rtl8812au

make

sudo make install

⚠️ Attention: IN Linux some adapters (for example, on a chip Realtek RTL8188EU) require kernel version 5.4+. Check your version with the command uname -rIf the kernel is outdated, update the system.

5. Setting up a Wi-Fi connection

After installing the drivers, all that's left to do is connect to the network. The process is almost the same for all versions of Windows and Linux.

Windows 10/11

  1. Click on the network icon in the lower right corner (next to the clock).
  2. Select the desired network from the list and click Connect.
  3. Enter the password (if the network is secured).
  4. Please mark if necessary Connect automatically.

If the network is not listed:

  • 🔍 Make sure the adapter is turned on (in Device Manager (no exclamation marks).
  • 📡 Check that the router is distributing Wi-Fi (indicator WLAN should burn).
  • 🔄 Reboot your router (unplug it for 30 seconds).

Linux (Ubuntu)

  1. Click on the network icon in the upper right corner.
  2. Select a network and enter the password.
  3. If there is no network icon, install it Network Manager:
sudo apt install network-manager

To configure via terminal:

sudo nmcli dev wifi list # Show available networks

sudo nmcli dev wifi connect "NetworkName" password "password"

6. Solving typical problems

Even after proper installation, errors may still occur. Let's look at the most common ones.

🔴 No networks available

  • 🔌 Check if the adapter is connected (for USB, try a different port).
  • 🔄 Restart your router and computer.
  • 🛠️ Update the adapter driver (see section 4).
  • 📡 Make sure your router isn't hiding your SSID (network name). If it is, connect manually via Settings → Networks → Wi-Fi → Hidden network.

🔴 There is a connection, but no internet

  • 🌐 Check if the internet works on other devices.
  • 🔧 Run network diagnostics in Windows: right-click on the network icon → Troubleshooting.
  • 📝 Check your IP settings: Control Panel → Network Connections Select your adapter → Properties → Internet Protocol Version 4 (TCP/IPv4)Make sure the boxes are checked. Obtain an IP address automatically And Obtain DNS server address automatically.

🔴 Slow speed or connection drops

  • 📶 Change the Wi-Fi channel in the router settings (for example, from Auto on 6 or 11 For 2.4 GHz).
  • 🔄 Update your router's firmware (instructions are usually on the device's sticker).
  • 🚫 Turn off power saving for the adapter: in Device ManagerAdapter Properties → Power Management → uncheck the box Allow the computer to turn off this device to save power.
What to do if the adapter gets hot?

If the USB adapter gets too hot, it may cause connection interruptions. Solutions:

1. Use a USB extension cable to keep the adapter out of a confined space.

2. Connect it to a USB 2.0 (black) port instead of USB 3.0 (blue) - this will reduce the load.

3. Buy an adapter with passive cooling (for example, TP-Link Archer T4U with radiator).

7. Alternative ways to connect to Wi-Fi

If installing an adapter is not possible (for example, there are no available ports or slots), consider these options:

  • 📱 Sharing Internet from a phone: turn on Access point in your smartphone settings and connect to it from your PC. The downside is limited data and rapid battery drain.
  • 🖧 Powerline adapters: They transmit internet through electrical wiring. You connect one adapter to the router and the other to your PC (via Ethernet). Speeds up to 1 Gbps, but depend on the quality of the wiring.
  • 🔗 Ethernet over USB: If you have a cable from your router but no Ethernet port on your laptop, buy one. USB-to-Ethernet adapter (For example, TP-Link UE300).

If your computer does not support Wi-Fi 6 (802.11ax), but your router distributes the network using this standard, the adapter will connect using an older protocol (for example, 802.11ac), but the speed will be limited by its capabilities.

8. Optimizing Wi-Fi connection

To ensure a stable connection, follow these tips:

  • 📍 Router location: place it in the center of the apartment, raise it to a height of 1–1.5 m, avoid walls and metal objects.
  • 🔄 Updating the router firmware: go to the control panel (usually at the address 192.168.0.1 or 192.168.1.1) and check for updates.
  • 🛡️ Network protection: use encryption WPA3 (or WPA2, If WPA3 not supported). Avoid WEP - It's easy to hack.
  • 📡 Channel selection: use programs like Wi-Fi Analyzer (Android) or inSSIDer (PC) to find the least congested channel.

For gamers and streamers:

  • 🎮 Connect to your router via cable (if possible) or use 5 GHz for lower delays.
  • 🔧 In the adapter settings (Device Manager → Properties → Advanced) enable the option Roaming Aggressiveness on Lowest for a stable connection.
⚠️ Attention: If you use VPN or proxy, this may reduce Wi-Fi speed. Disable them to check your actual connection speed.

FAQ: Frequently Asked Questions

Is it possible to install Wi-Fi on a very old computer (pre-2010)?

Yes, but with some caveats. For PCs before 2010:

  • Use USB adapter with support USB 2.0 (For example, TP-Link TL-WN721N).
  • Check compatibility with your OS: Windows XP or Windows 7 may not support new drivers.
  • If there is no motherboard PCIe, will have to be used PCI adapter (obsolete standard).

For laptops of that period, you can often find Mini PCIe-modules (for example, Intel Wireless 5100).

Which adapter should I choose for online gaming?

Critical for gaming low ping And stable connection. Recommendations:

  • PCIe adapter with support Wi-Fi 6 (802.11ax) and MU-MIMO: ASUS PCE-AX58BT or TP-Link Archer TX3000E.
  • Dual-band (2.4 + 5 GHz) for flexibility.
  • External antennas for better signal.

The ideal option is a cable connection, but if this is not possible, choose an adapter with technology Beamforming (directional signal transmission).

Why doesn't Windows see the Wi-Fi adapter after installation?

Reasons and solutions:

  • No drivers: download them from the manufacturer's website (do not use the drivers from the disk - they are outdated).
  • Adapter is faulty: Try connecting it to another PC.
  • Device conflict: V Device Manager Check if there's an exclamation mark next to the adapter. If so, remove the device and restart your PC.
  • Lack of food: for USB adapters use Powered USB hub.

If the adapter PCIe, check if it is firmly inserted into the slot.

Can you use your smartphone as a Wi-Fi adapter for your PC?

Yes, there are two ways:

  1. USB-ethernet (tethering):
    • Connect your smartphone to your PC via USB.
    • Turn it on in your phone settings USB modem (on Android) or Modem mode (on iPhone).
    • The computer will receive Internet access via USB.
  • Bluetooth modem:
    • Pair your phone and PC via Bluetooth.
    • Turn on Bluetooth access point on the phone.
    • On your PC, connect to the network via Settings → Devices → Bluetooth.

    Cons: high battery drain on the phone and possible traffic restrictions from the operator.

  • How to check Wi-Fi speed on a computer?

    Use these tools:

    • Speedtest.net (browser or application) - shows download/upload speed and ping.
    • Windows Command Prompt:
      ping ya.ru -n 10

      Look at the response time (should be < 50 ms).

    • Linux terminal:
      nload

      Shows the current network load in real time.

    If the speed is lower than expected, check:

    • Reduce the load on the router (disable unnecessary devices).
    • Adapter operating mode (in Device Manager the maximum standard must be included, for example, 802.11ac).