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.
Asked
Active
Viewed 1,281 times
1 Answers
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?

Sylvain Pineau
- 62,169

chili555
- 60,188
0200
:03:00.0 Ethernet controller [0200]: Qualcomm Atheros AR242x / AR542x Wireless Network Adapter (PCI-Express) [168c:001c] (rev 01)
. So, I suggest to use betterlspci -nn | grep Wireless
– Radu Rădeanu Jun 03 '14 at 20:56lspci -nnk | grep net -A2
. – Radu Rădeanu Jun 03 '14 at 22:22