

{"id":111720,"date":"2023-02-02T09:00:24","date_gmt":"2023-02-02T03:30:24","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=111720"},"modified":"2023-02-02T10:34:32","modified_gmt":"2023-02-02T05:04:32","slug":"dmidecode-linux","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/","title":{"rendered":"dmidecode command in Linux with Examples"},"content":{"rendered":"<p>In this article, we will learn everything about the dmidecode command in Linux-based operating systems. We will look at what the dmidecode command is, why it is used, how to install it, the syntax of the dmidecode command, and the options used along with it.<\/p>\n<p>In the end, we will also look at some fantastic practical examples of the dmidecode command by pairing it with various options to understand its working. So pay attention, take notes, and read all the way to the end for the best benefits.<\/p>\n<h3>What is linux dmidecode command?<\/h3>\n<p>Dmidecodes stands for Desktop Management Interface table decoder. Dmidecode is a command line-based utility in Linux-based operating systems that record data from the DMI table and produce it in a human-readable format.<\/p>\n<p>Sounds intimidating right? Well, that is how all computer science field definitions are. To be honest, it is just a way of complicating simple things. The dmidecode command in simple terms is a tool that retrieves systems\u2019 hardware-related information in a human-readable format. See cakewalk!<\/p>\n<p>When I say the systems\u2019 hardware, I mean everything from A-Z, these include Processor, RAM(DIMMs), BIOS detail, Memory, Serial numbers, product name, DMI strings, baseboard information, IDs, chassis information and so many more!<\/p>\n<h3>Syntax of the dmidecode command in linux<\/h3>\n<p>The syntax of the dmidecode is nowhere close to the intimidation level of its definition because it is far more easy, so easy that you can close your eyes and type it! Jokes aside the syntax of the dmidecode command is:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode&lt;options&gt;<\/pre>\n<h3>Options used with linux dmidecode command<\/h3>\n<p>Unlike most commands in Linux, the dmidecode command comes with very few options that specify how the dmidecode command must function, format, and print the output. Let us take a detailed look at each of these options.<\/p>\n<p><strong>1. -d<\/strong><\/p>\n<p>This option reads memory from the file specified. If you don\u2019t specify any file, the default will be taken as \u201c\/dev\/mem\u201d. You can also write this option as \u201c&#8211;dev-mem\u201d<\/p>\n<p><strong>2. -q<\/strong><\/p>\n<p>This option enables quiet mode, meaning that there will be less output displayed on the screen. This option also suppresses error messages. You can also write this option as \u201c&#8211;quiet\u201d<\/p>\n<p><strong>3. -s<\/strong><\/p>\n<p>This option displays only the values of the specified DMI string. You can also write this option as \u201c&#8211;string\u201d<\/p>\n<p><strong>4. -t<\/strong><\/p>\n<p>This option displays only the entries of the specified type. You can also write this option as \u201c&#8211;type\u201d<\/p>\n<p><strong>5. -u<\/strong><\/p>\n<p>This option does not decode the entries. You can also write this option as \u201c&#8211;dump\u201d<\/p>\n<p><strong>6. -h<\/strong><\/p>\n<p>This option prints the help menu of the dmidecode command as shown:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/help-menu-of-demidecode-command.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111819\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/help-menu-of-demidecode-command.webp\" alt=\"help menu of demidecode command\" width=\"1074\" height=\"321\" \/><\/a><\/p>\n<p><strong>7. -V<\/strong><\/p>\n<p>This option displays the information regarding the version of the dmidecode command you are using on your PC as shown:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/version-of-the-dmidecode-command.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111820\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/version-of-the-dmidecode-command.webp\" alt=\"version of the dmidecode command\" width=\"1074\" height=\"243\" \/><\/a><\/p>\n<h3>Understanding output of linux dmidecode command<\/h3>\n<p>Before we look at some practical examples of the dmidecode command, let us understand the output of the dmedicode command. The dmidecode command contains 5 fields of information.<\/p>\n<p><strong>1. Handle:<\/strong><\/p>\n<p>The handle is a unique identifier that allows records to reference each other.<\/p>\n<p><strong>2. Decoded values:<\/strong><\/p>\n<p>The decoded values contain the information depending on the type of record<\/p>\n<p><strong>3. Type:<\/strong><\/p>\n<p>The type provides information about computer elements such as system, baseboard, chassis, processor, and so much more.<\/p>\n<p><strong>4. Size:<\/strong><\/p>\n<p>As the name suggests, It shows the size of each record. Each record contains a 4-byte header<\/p>\n<p><strong>5. Bios information:<\/strong><\/p>\n<p>This field displays information that includes the details of the vendor, version, release date, ROM size, etc.<\/p>\n<p>Now, since we have covered the theory and fundamentals regarding the demidecode command, let us look at some fantastic examples of the dmidecode command in the terminal of ubuntu 20.04.<\/p>\n<h3>Reading memory from device file in linux<\/h3>\n<p>If you want to read memory from the device file (\/dev\/mem), run the dmidecode along with the option \u201c-d\u201d as shown:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode -d &lt;file path&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/reading-memory-from-device-file.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111821\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/reading-memory-from-device-file.webp\" alt=\"reading memory from device file\" width=\"1073\" height=\"615\" \/><\/a><\/p>\n<h3>Listing the available TYPE<\/h3>\n<p>As we discussed above, the \u201cTYPE\u201d field can be either a DMI type number, a comma-separated list of type numbers, or a keyword. If you want to know what types are supported, you can simply execute the below command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --type<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/listing-the-available-type.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111822\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/listing-the-available-type.webp\" alt=\"listing the available type\" width=\"1073\" height=\"339\" \/><\/a><\/p>\n<h3>Displaying the information using type ID<\/h3>\n<p>If you wish to get more information on a specific component, you can get hold of its type ID and execute the dmidecode by pairing it with the option \u201c-t\u201d followed by the type ID as shown in the syntax below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode -t &lt;type ID&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/displaying-the-information-using-type-id.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111823\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/displaying-the-information-using-type-id.webp\" alt=\"displaying the information using type id\" width=\"1072\" height=\"306\" \/><\/a><\/p>\n<h3>Displaying the information about BIOS<\/h3>\n<p>If you want information about the BIOS of your system, run the dmidecode command by combining it with the option \u201c&#8211;type\u201d followed by the word \u201cBIOS\u201d as shown in the syntax below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode --type bios<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/displaying-the-information-about-bios.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111824\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/displaying-the-information-about-bios.webp\" alt=\"displaying the information about bios\" width=\"1073\" height=\"325\" \/><\/a><\/p>\n<h3>Printing system information<\/h3>\n<p>If you want information about your system, run the dmidecode command by combining it with the option \u201c&#8211;type\u201d followed by the word \u201csystem\u201d as shown in the syntax below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode --type system<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/printing-system-information.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111825\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/printing-system-information.webp\" alt=\"printing system information\" width=\"1073\" height=\"409\" \/><\/a><\/p>\n<h3>Printing baseboard information<\/h3>\n<p>If you want information about your baseboard, run the dmidecode command by combining it with the option \u201c&#8211;type\u201d followed by the word \u201cbaseboard\u201d as shown in the syntax below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode --type system<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/printing-baseboard-information.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111826\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/printing-baseboard-information.webp\" alt=\"printing baseboard information\" width=\"1073\" height=\"333\" \/><\/a><\/p>\n<h3>Printing chassis information<\/h3>\n<p>If you want information about your chassis, run the dmidecode command by combining it with the option \u201c&#8211;type\u201d followed by the word \u201cchassis\u201d as shown in the syntax below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode --type chassis<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/printing-chassis-information.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111827\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/printing-chassis-information.webp\" alt=\"printing chassis information\" width=\"1073\" height=\"363\" \/><\/a><\/p>\n<h3>Displaying information using DMI keywords<\/h3>\n<p>If you want to print information using DMI string keywords, use the option \u201c-s\u201d followed by the keyword as shown:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode -s &lt;KEYWORD&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/displaying-information-using-dmi-keywords.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111828\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/displaying-information-using-dmi-keywords.webp\" alt=\"displaying information using dmi keywords\" width=\"1073\" height=\"189\" \/><\/a><\/p>\n<p>However, if you don\u2019t specify any DMI string keyword, the command simply prints the list of valid keywords and exits with an error message.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/error-upon-not-specifying-any-dmi-string-keywords.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111829\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/error-upon-not-specifying-any-dmi-string-keywords.webp\" alt=\"error upon not specifying any dmi string keywords\" width=\"1073\" height=\"419\" \/><\/a><\/p>\n<h3>Getting the BIOS version<\/h3>\n<p>To get the version of the BIOS in your system, use following command<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --string bios-version<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-bios-version.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111830\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-bios-version.webp\" alt=\"getting bios version\" width=\"1073\" height=\"129\" \/><\/a><\/p>\n<h3>Getting the BIOS release date<\/h3>\n<p>If you want to get the release date of the BIOS in your system, use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --string bios-release-date<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-bios-release-date.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111831\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-bios-release-date.webp\" alt=\"getting bios release date\" width=\"1077\" height=\"126\" \/><\/a><\/p>\n<h3>Getting system product name of the Linux hardware<\/h3>\n<p>To get the product name on which the Linux server is installed, use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --string system-product-name<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-the-system-product-name-of-linux-hardware.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111832\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-the-system-product-name-of-linux-hardware.webp\" alt=\"getting the system product name of linux hardware\" width=\"1073\" height=\"144\" \/><\/a><\/p>\n<h3>Getting the serial number of the Linux hardware<\/h3>\n<p>To get the serial number of the hardware on which the Linux server is installed, use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --string system-serial-number<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-the-serial-number-of-linux-hardware.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111833\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/getting-the-serial-number-of-linux-hardware.webp\" alt=\"getting the serial number of linux hardware\" width=\"1073\" height=\"147\" \/><\/a><\/p>\n<h3>Getting the process information of the Linux hardware<\/h3>\n<p>If you want to get the details of the processor available on your Linux server use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --string processor-version<\/pre>\n<h3>Getting the process frequency of the Linux hardware<\/h3>\n<p>If you want to get the processor frequency of the processor used in your Linux server use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">dmidecode --string processor-frequency<\/pre>\n<h3>Hiding information in the output<\/h3>\n<p>Yup! We can even hide some information in the output of the dmidecode by enabling quiet mode. To enable it, all we have to do is run the dmidecode command along with the option \u201c-q\u201d.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/hiding-information-in-the-output.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111834\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/hiding-information-in-the-output.webp\" alt=\"hiding information in the output\" width=\"1073\" height=\"319\" \/><\/a><\/p>\n<h3>Dumping information as hexadecimal<\/h3>\n<p>If display the string values in both hexadecimal and ASCII, execute the dmidecode command along with the option \u201c-u\u201d<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/dumping-information-as-hexadecimal.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111835\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/dumping-information-as-hexadecimal.webp\" alt=\"dumping information as hexadecimal\" width=\"1073\" height=\"241\" \/><\/a><\/p>\n<h3>Dumping the DMI data to a file<\/h3>\n<p>To dump DMI data into a file in a binary form, use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode --dump-bin &lt;filename&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/dumping-dmi-data-to-a-file.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111836\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/dumping-dmi-data-to-a-file.webp\" alt=\"dumping dmi data to a file\" width=\"924\" height=\"194\" \/><\/a><\/p>\n<h3>Reading data from a binary file<\/h3>\n<p>To read data from a binary file previously generated with the option \u201c&#8211;dump-bin\u201d, use the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo dmidecode --from-dump &lt;filename&gt;<\/pre>\n<p>#image#<\/p>\n<h3>Summary<\/h3>\n<p>As you have seen, the dmidecode command is a slightly intimidating yet simple tool that gives you complete information of your system\u2019s hardware. You have now understood what the dmidecode command is, why it is used, the syntax of the demidecode command, and the various options used with it including many practical examples.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will learn everything about the dmidecode command in Linux-based operating systems. We will look at what the dmidecode command is, why it is used, how to install it, the syntax&#46;&#46;&#46;<\/p>\n","protected":false},"author":5,"featured_media":111776,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35],"tags":[27216],"class_list":["post-111720","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-linux-dmidecode-command"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>dmidecode command in Linux with Examples - DataFlair<\/title>\n<meta name=\"description\" content=\"dmidecode command in linux gives you information of your system\u2019s hardware. See its syntax and various options used with examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"dmidecode command in Linux with Examples - DataFlair\" \/>\n<meta property=\"og:description\" content=\"dmidecode command in linux gives you information of your system\u2019s hardware. See its syntax and various options used with examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-02T03:30:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-02T05:04:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-dmidecode-command.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"dmidecode command in Linux with Examples - DataFlair","description":"dmidecode command in linux gives you information of your system\u2019s hardware. See its syntax and various options used with examples.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/","og_locale":"en_US","og_type":"article","og_title":"dmidecode command in Linux with Examples - DataFlair","og_description":"dmidecode command in linux gives you information of your system\u2019s hardware. See its syntax and various options used with examples.","og_url":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2023-02-02T03:30:24+00:00","article_modified_time":"2023-02-02T05:04:32+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-dmidecode-command.webp","type":"image\/webp"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823"},"headline":"dmidecode command in Linux with Examples","datePublished":"2023-02-02T03:30:24+00:00","dateModified":"2023-02-02T05:04:32+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/"},"wordCount":1210,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-dmidecode-command.webp","keywords":["linux dmidecode command"],"articleSection":["Linux Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/","url":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/","name":"dmidecode command in Linux with Examples - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-dmidecode-command.webp","datePublished":"2023-02-02T03:30:24+00:00","dateModified":"2023-02-02T05:04:32+00:00","description":"dmidecode command in linux gives you information of your system\u2019s hardware. See its syntax and various options used with examples.","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/dmidecode-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-dmidecode-command.webp","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-dmidecode-command.webp","width":1200,"height":628,"caption":"linux dmidecode command"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/dmidecode-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Linux Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"dmidecode command in Linux with Examples"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team creates expert-level guides on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our goal is to empower learners with easy-to-understand content. Explore our resources for career growth and practical learning.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam1\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111720","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=111720"}],"version-history":[{"count":4,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111720\/revisions"}],"predecessor-version":[{"id":111839,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111720\/revisions\/111839"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/111776"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=111720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=111720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=111720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}