Home
Posts Tagged "list network adapter info through linux terminal"
Quickly Find Out Network Adapter Info Through Linux Mint/Ubuntu Terminal
Jul 24th, 2012 · Comments Off on Quickly Find Out Network Adapter Info Through Linux Mint/Ubuntu Terminal
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 :
lspci|grep Ethernet
This will display the details of the LAN adapter present.
2. To find the info about wireless adapter, type :
lspci|grep Network
What the command...