6

How can I detect the model of a computer, like Leveno or Sony?

Is there any program can do this, for both PC & Laptop?

(I just want to load a specific driver when the target model is detected.)

jasonwryan
  • 73,126
daisy
  • 54,555

1 Answers1

8

On my system, this works:

$ sudo dmidecode --type 1 | grep 'Product Name'
    Product Name: Macmini4,1
l0b0
  • 51,350
  • Yeah , that's the right command , actually plus dmidecode -t BIOS | grep Vendor solved my problem .. thanks ! – daisy Dec 01 '11 at 13:15