Possible Duplicate:
List the hardware info and status in my computer
I want to know the computer's hardware specifications.
Like:
cpu:xxx
motherboard:xxx
memory:xxx
video card:xxx
pci:xxx
Thank you~
Possible Duplicate:
List the hardware info and status in my computer
I want to know the computer's hardware specifications.
Like:
cpu:xxx
motherboard:xxx
memory:xxx
video card:xxx
pci:xxx
Thank you~
*-display
(possibly under*-pci:0
if your card is pci) – laurent Sep 24 '11 at 17:00sudo lshw -html > hwlist.html
and open the file created with a browser. If you want only the display adapter name:sudo lshw -short | grep display
– laurent Sep 24 '11 at 17:12