$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Find WiFi Adapter Name in Ubuntu 21.10

December 1, 2021 | By the+gnu+linux+evangelist.

Find Model ID

  1. 2. Looking Up Model

    Then to Find Wireless Adapter Info
    For the PCI/PCIe internal Adapters simply run the Command:

    lspci -v | grep Wireless

    But for the USB Dongles try instead with::

    lsusb -v | grep Wireless

    The grep Command refine the result following the matching Keyword.

    And in the Output you’ll easily See the Card’s Manufacturer and Model:

    How to Find WiFi/Bluetooth Card Model in Ubuntu 21.10 Impish - Terminal Output

    Last, to Check if is Working or Not and with which Driver:

    sudo lshw -C network

    Look at the “configuration” Section:

    Terminal lshw Output
  2. 3. Installing Wireless Driver

    How to Install Wireless Driver for Ubuntu 21.10

    Wi-fi Card Driver Ubuntu Setup Guide

Contents