Here is a quick way to find out what type of ethernet and wireless adapter is present in the system running Linux Mint/Ubuntu:
1. Open Terminal and for finding the manufacturer details of ethernet adapter (LAN adapter) present, type :
This will display the details of the LAN adapter present.
2. To find the info about wireless adapter, type :
What the command “lspci” basically does is list all the PCI related devices present in the system, simply piping the “Ethernet” and “Wireless” parameters through grep with lspci will only display the info we want.
As with any other Linux command, to know more of the functionality offered by lspci, type :
Read the manual pages and use them to do cool stuff. :) This is the elegance of Linux command prompt (Terminal).
Cheers.