How do I tell what my make and model of my computer is?

Enkouyami

Is there a way of finding out what the make and model of computer is without simply going to the box or looking at the label on the computer if it had one?

For example if my computer was a HP Pavilion 17-f000 Notebook PC series and I wanted to find that out by using a CLI or GUI program.

marshki

From the command line:

sudo dmidecode -s system-product-name or sudo dmidecode --string system-product-name

Alternatively

sudo dmidecode | grep -A3 '^System Information'

dmidecode provides a description of the computer's hardware information.

The -s --string flag with the DMI string system-product-name, only outputs the make and model of your computer.

| grep pipes the output to grep and the -A3 flag for grep prints 3 lines after a match for System Information.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I tell what RAM will fit my computer?

From Dev

How do I tell what component is preventing my computer from booting for the first time?

From Dev

My computer is loud: How do I tell which fan is the issue?

From Dev

How do I tell my boss working with Xamarin will not make it faster

From Dev

How do I tell what type of touchpad is in my notebook

From Dev

How can I tell which network interface my computer is using?

From Dev

How do I make my published web app that is installed on my IIS be accessed by another computer

From Dev

What should I make my computer do while I'm away from keyboard?

From Dev

How do I tell what's happening when I postback my view?

From Dev

How do I tell python what my data structure (that is in binary) looks like so I can plot it?

From Dev

My computer reboots when I tell it to shutdown

From Dev

What do I need to make my .NET application working on another computer?

From Dev

How Do I Tell What State My Application Is Being Launched From In Swift

From Dev

How Do I Tell What State My Application Is Being Launched From In Swift

From Dev

How do I tell what program is keeping my hard drive spinning

From Dev

How do I make it so that I can directly connect to the virtual machine from my computer?

From Dev

How to tell if My Computer can Dual Monitor

From Dev

How do I change my IP Address on my computer?

From Dev

What is the address target of "My computer" in Windows? How can I make a custom shortcut?

From Dev

How do I make files copied over the network from my Windows computer be owned by me?

From Dev

How can I make my computer do a repeated series of tasks by a script file on Windows?

From Dev

How do I make my computer's firewall let devices on the same network in?

From Dev

How do I make my computer ask before shutting down instantly?

From Dev

How do I refactor my model?

From Dev

How do I refactor my model?

From Dev

How do I tell if my container is running inside a Kubernetes cluster?

From Dev

How do I tell fugitive my path to Git on Windows?

From Dev

How do I tell if my current thread is the UI thread?

From Dev

How do I tell Resharper that my IEnumerable method removes nulls?

Related Related

  1. 1

    How can I tell what RAM will fit my computer?

  2. 2

    How do I tell what component is preventing my computer from booting for the first time?

  3. 3

    My computer is loud: How do I tell which fan is the issue?

  4. 4

    How do I tell my boss working with Xamarin will not make it faster

  5. 5

    How do I tell what type of touchpad is in my notebook

  6. 6

    How can I tell which network interface my computer is using?

  7. 7

    How do I make my published web app that is installed on my IIS be accessed by another computer

  8. 8

    What should I make my computer do while I'm away from keyboard?

  9. 9

    How do I tell what's happening when I postback my view?

  10. 10

    How do I tell python what my data structure (that is in binary) looks like so I can plot it?

  11. 11

    My computer reboots when I tell it to shutdown

  12. 12

    What do I need to make my .NET application working on another computer?

  13. 13

    How Do I Tell What State My Application Is Being Launched From In Swift

  14. 14

    How Do I Tell What State My Application Is Being Launched From In Swift

  15. 15

    How do I tell what program is keeping my hard drive spinning

  16. 16

    How do I make it so that I can directly connect to the virtual machine from my computer?

  17. 17

    How to tell if My Computer can Dual Monitor

  18. 18

    How do I change my IP Address on my computer?

  19. 19

    What is the address target of "My computer" in Windows? How can I make a custom shortcut?

  20. 20

    How do I make files copied over the network from my Windows computer be owned by me?

  21. 21

    How can I make my computer do a repeated series of tasks by a script file on Windows?

  22. 22

    How do I make my computer's firewall let devices on the same network in?

  23. 23

    How do I make my computer ask before shutting down instantly?

  24. 24

    How do I refactor my model?

  25. 25

    How do I refactor my model?

  26. 26

    How do I tell if my container is running inside a Kubernetes cluster?

  27. 27

    How do I tell fugitive my path to Git on Windows?

  28. 28

    How do I tell if my current thread is the UI thread?

  29. 29

    How do I tell Resharper that my IEnumerable method removes nulls?

HotTag

Archive