myesn

myEsn2E9

hi
github

Check if the wireless network card in Ubuntu supports 5GHz WIFI.

Background#

Wireless network cards have a minimum support of 2.4 GHz WIFI. If you want to check if they support 5 GHz, you can refer to this article.

Installation#

sudo apt install wireless-tools -y

Usage#

First, check the interface name of the wireless network card:

iwconfig

In my case, it is wlp3s0. Then, check the frequencies supported by the wireless network card:

# Replace wlp3s0 with the interface name of your wireless network card
iwlist wlp3s0 freq

In my case, I found channels for 5 GHz, which means it can connect to 5 GHz WIFI. If there are no channels, it means it does not support it.

wlp3s0    32 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Channel 14 : 2.484 GHz
          Channel 36 : 5.18 GHz
          Channel 38 : 5.19 GHz
          Channel 40 : 5.2 GHz
          Channel 42 : 5.21 GHz
          Channel 44 : 5.22 GHz
          Channel 46 : 5.23 GHz
          Channel 48 : 5.24 GHz
          Channel 52 : 5.26 GHz
          Channel 56 : 5.28 GHz
          Channel 60 : 5.3 GHz
          Channel 64 : 5.32 GHz
          Channel 100 : 5.5 GHz
          Channel 104 : 5.52 GHz
          Channel 108 : 5.54 GHz
          Channel 112 : 5.56 GHz
          Channel 116 : 5.58 GHz
          Channel 120 : 5.6 GHz
          Channel 124 : 5.62 GHz

Reference#

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.