How To: List Hardware From The Terminal (lshw)

lshw‘. The manual helpfully defines it as:

[code]sudo lshw[/code]

[code]sudo lshw -C cpu[/code]

You may even be asked to use grep with it, such as:

[code]sudo lshw | grep wireless[/code]

[code]sudo lshw -short[/code]

[code]/1 wlxe4beed0e5f5c network Wireless interface[/code]

Now, if you want to refine it even further, why not try this:

[code]sudo lshw -short | grep network[/code]

[code]man lshw[/code]

or

[code]info lshw[/code]