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

Display ethernet adapter info through Linux terminal

This will display the details of the LAN adapter present.

2. To find the info about wireless adapter, type :

lspci|grep Network

Display wireless adapter info through Linux terminal

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 :

man lspci

Manual pages of lspci

Read the manual pages and use them to do cool stuff. :) This is the elegance of Linux command prompt (Terminal).

Cheers.

Comments are closed.