0

I am looking for command line which tells me what is the model of my wireless card? For example if that is Atheors. The result should be atheros.

Mohammad Reza Rezwani
  • 10,286
  • 36
  • 92
  • 128

1 Answers1

4

To find the model of your wireless card:

lspci -nn | grep 0280

The pipe symbol | is on the right side of my keyboard on the same key with backslash. We added -nn because we want numerical details, particularly the pci.id, that may help diagnose a problem. 0280 is the class used by lspci for wireless devices: for example:

03:00.0 Network controller [0280]: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection [8086:4227] (rev 02)

Are you looking for just Atheros with all other details removed?

chili555
  • 60,188