I am unable to find my computer model name. I have Ubuntu 12.04. I tried HardInfo and System Monitor, but could not find it. I know this is a noob question, but any help is appreciated.
5 Answers
The easy way is to make a text file to search in between do -
sudo lshw | grep product >file
gedit file
Everything will be displayed clearly.The first line will your product name.
You can also view release date , product name, baseband manufacture by followings-
sudo dmidecode -s bios-release-date
sudo dmidecode -s baseboard-product-name
sudo dmidecode -s baseboard-manufacturer
hpe its all clear now.
- 2,997
- 2
- 19
- 33
-
4Also you can use `-t, --type TYPE`: Only display the entries of type TYPE: `sudo dmidecode -t system`. – Pablo Bianchi Mar 23 '17 at 20:51
-
Old but it worked. Thank you very much. – kailor Jun 26 '18 at 09:22
-
In case you don't want to save output to a file, you can just omit the `>file` part and contents will be displayed in your terminal's buffer: `sudo lshw | grep product` – solstinger Jul 26 '22 at 08:03
Try the below command on terminal on get the exact model name,
sudo dmidecode | less | grep Version | sed -n '2p'
Try this command to display your pc's model name with some information,
sudo dmidecode | less | grep Version
Try this for product name,
sudo dmidecode | less | grep "Product Name"
- 77,204
- 56
- 214
- 254
-
1Since I wanted the Product name, the command that worked was sudo dmidecode | less | grep "Product Name" dmidecode worked. – DryFire Dec 06 '13 at 08:05
-
-
This is a GUI Application to display some hardware and software information about the computer.
sudo apt-get install sysinfo
- 399
- 1
- 5
dmidecode is the favorite, you can get your needs using:
sudo dmidecode | grep Version
For example my output is:
Intel(R) Core(TM) i7-3930K CPU @ 3.20GHz
- 82,867
- 54
- 239
- 271
Actually none of these solutions worked for me. If you just run man dmidecode it tells you how to get specific system information strings, such as the model name. I tried this on three different laptop models:
sudo dmidecode -s system-family
and it replied with my family model name, which is what I wanted.
- 101