Quoting Rick M.: <br><br><span style="color:rgb(102,51,102)">This will probably catch it:</span><br style="color:rgb(102,51,102)"><span style="color:rgb(102,51,102)">
lspci | grep -i wireless</span><br style="color:rgb(102,51,102)">
<br style="color:rgb(102,51,102)"><span style="color:rgb(102,51,102)">
The above takes the rather verbose full output of the 'lspci' utility --</span><br style="color:rgb(102,51,102)"><span style="color:rgb(102,51,102)">
which asks the PCI controller chip 'Please dump to console a listing of</span><br style="color:rgb(102,51,102)"><span style="color:rgb(102,51,102)">
information about all the PCI devices you know about' -- and winnows out</span><br style="color:rgb(102,51,102)"><span style="color:rgb(102,51,102)">
to display only any line that includes the word 'wireless' in any</span><br style="color:rgb(102,51,102)"><span style="color:rgb(102,51,102)">
lettercase (the '-i' switch meaning 'case-insensitive', you see).</span><br><br>Thanks Rick - I knew this morning that sudo Lspci | grep ...<br>where ... should get the output wanted if I could find a way to indicate wireless device in the grep parse/search. As it turns out I needed to filter on Ethernet instead of wireless for the command to return any info.<br>
<br>Ethernet device info requested by Daniel G.:<br><br>[kbernard@centos6-thinkpad-t61 ~]$ lspci | grep -i ethernet<br>00:19.0 Ethernet controller: Intel Corporation 82566MM Gigabit Network Connection (rev 03)<br>03:00.0 Ethernet controller: Atheros Communications Inc. AR5212 802.11abg NIC (rev 01)<br>
<br>Thanks,<br>Ken<br> <br><br><br><br>