Solving WiFi problems

LinuxDrivers.jpg

Steps

How it should work

  1. Select start menu Start — Preferences — Additional drivers.
  2. Select tab Additional drivers and wait until selection is proposed.
  3. Select
    Using Broadcom 802.11 Linux STA wireless driver source from mcmwl-kernel-source (proprietary)
    and
    Using Processor microcode firmware for Intel CPUs from intel-microcode (open source):

    Att03.png

  4. Press Apply changes wait and then Restart....

WiFi troubleshooting

Perform these steps, if setup of closed source drivers for WiFi card didn't go well.

  1. Look at status of network devices by entering command in terminal:

    rfkill list

    should show something like:

    0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
    1: dell-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
    2: dell-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
    3: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  2. if Wireless card is Soft blocked, enter command:

    sudo rfkill unblock 3

    where 3 is ID of the card.

  3. If Wireless card is Hard blocked, check that WiFi switch on front part of laptop edge is switched on. If it is on, reboot computer and go into BIOS settings (Probably, by pressing F2, or by pressing F12 and choosing something like BIOS settings. Ask teacher for BIOS password.). Enable WiFi in BIOS and restart computer.

  4. If there is no Wireless card shown in the list, check that WiFi card is not blocked with hardware switch or in BIOS, and then chechk that it is registered as a hardware in your computer, by entering command:

    dmesg|grep -i wifi

    should show something like:

    [    4.307646] Intel(R) Wireless WiFi driver for Linux
    [    4.316871] iwlwifi 0000:01:00.0: loaded firmware version 34.0.1 op_mode iwlmvm
    [    4.342595] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 8260, REV=0x208
    [    4.413531] iwlwifi 0000:01:00.0: base HW address: e4:a4:71:d1:8f:b7
    [    4.593016] iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
  5. If hardware is not registered in your computer:
    1. try to reinstall device drivers (and recompile part of Linux kernel to interact with proprietary drivers):

      sudo apt install --reinstall firmware-b43-installer
    2. Check and, if necessary, remove device from blacklist:

      sudo leafpad /etc/modprobe.d/blacklist-bcm43.conf

      and change line:

      blacklist b43

      to
      # blacklist b43

      save file, reboot computer.

  6. Check availability of wireless network in network manager by right click on network icon and look on list of networks.
  7. If WiFi is not available, try to load device driver manually:

    sudo modprobe b43
  8. If necessary, go to step 1.
  9. Because these drivers are tied with specific Linux kernel version, disable upgrades of Linux kernel:

    sudo apt-mark hold linux-image-generic linux-headers-generic

    Now you can safely upgrade all other packages.

  10. Go back to 1. exercise.

Created by Valdis Vītoliņš on 2018-07-03 08:59
Last modified by Valdis Vītoliņš on 2019-03-03 15:44
 
Xwiki Powered
Creative Commons Attribution 3.0 Unported License