{"id":13212,"date":"2025-01-13T06:09:13","date_gmt":"2025-01-13T06:09:13","guid":{"rendered":"https:\/\/greenwebpage.com\/community\/?p=13212"},"modified":"2025-01-13T11:52:34","modified_gmt":"2025-01-13T11:52:34","slug":"how-to-find-motherboard-model-and-serial-number-in-linux","status":"publish","type":"post","link":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/","title":{"rendered":"How to Find Motherboard Model and Serial Number in Linux: Using Command Line"},"content":{"rendered":"\n<p>The motherboard is the central hub of your computer, a complex piece of technology that connects all the components together. Linux, the powerhouse of operating systems used by developers and system administrators worldwide, offers many tools for hardware management and information retrieval. One of the most common yet critical pieces of information you might need is the details of your motherboard, including the model and serial number. This information is vital for system upgrades, troubleshooting, or when you need to check compatibility with other hardware components.<\/p>\n\n\n\n<p>This blog post will guide you through the process of uncovering this vital information using the Linux command line.<\/p>\n\n\n\n<p><strong>Table of Content<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#How-to-Find-Motherboard-Model-and-Serial-Number-in-Linux\">How to Find Motherboard Model and Serial Number in Linux<\/a>\n<ul class=\"wp-block-list\">\n<li><a href=\"#1.-Using-dmidecode-Command\">Using dmidecode Command<\/a><\/li>\n\n\n\n<li><a href=\"#2.-Using-sysfs-File-System\">Using sysfs File System<\/a><\/li>\n\n\n\n<li><a href=\"#3.-Using-lshw-Command\">Using lshw Command<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><a href=\"#Conclusion\">Conclusion<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"How-to-Find-Motherboard-Model-and-Serial-Number-in-Linux\"><a id=\"post-13212-_u39905fzoxy5\"><\/a>How to Find Motherboard Model and Serial Number in Linux<\/h2>\n\n\n\n<p>For Linux users, knowing the exact model of the motherboard can be crucial for various tasks, such as upgrading your system, troubleshooting, or simply satisfying your curiosity about the hardware you&#8217;re using.<\/p>\n\n\n\n<p>Here&#8217;s a step-by-step guide to finding your motherboard&#8217;s model and serial number in Linux:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1.-Using-dmidecode-Command\"><a id=\"post-13212-_ohwbutx3pjpr\"><\/a>1. Using dmidecode Command<\/h3>\n\n\n\n<p>The primary tool for this task is <a href=\"https:\/\/linux.die.net\/man\/8\/dmidecode\">dmidecode<\/a>. It&#8217;s a built-in utility that reads the system&#8217;s DMI (Desktop Management Interface) table to provide you with a wealth of information about your system&#8217;s hardware.<\/p>\n\n\n\n<p>In Linux, it is a reliable way to extract motherboard information.<\/p>\n\n\n\n<p><strong>Checking for dmidecode Availability<\/strong><\/p>\n\n\n\n<p>In some cases, dmidecode might not be installed on your system. You can install it using your distribution&#8217;s package manager. For instance, you can use on Ubuntu or Debian-based systems:<\/p>\n\n\n\n<pre>sudo apt install dmidecode<\/pre>\n\n\n\n<p><strong>Find Motherboard Model and Serial Number<\/strong><\/p>\n\n\n\n<p>The <strong>dmidecode <\/strong>command is a powerful tool that retrieves hardware information stored in the Desktop Management Interface (DMI) table. To find your motherboard&#8217;s details, you can use the following command:<\/p>\n\n\n\n<pre>sudo dmidecode -t 2<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1240\" height=\"758\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-1.png\" alt=\"\" class=\"wp-image-13213\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-1.png 1240w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-1-300x183.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-1-1024x626.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-1-768x469.png 768w\" sizes=\"(max-width: 1240px) 100vw, 1240px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>This command displays information about your motherboard, including the manufacturer, product name, version, and serial number.<\/p>\n\n\n\n<p>To narrow down the output to just the model and serial number, you can use the <strong>grep <\/strong>command with <strong>Product\\|Serial<\/strong>:<\/p>\n\n\n\n<pre>sudo dmidecode -t 2 | grep -i 'Product\\|Serial'<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1241\" height=\"180\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-2.png\" alt=\"\" class=\"wp-image-13214\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-2.png 1241w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-2-300x44.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-2-1024x149.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-2-768x111.png 768w\" sizes=\"(max-width: 1241px) 100vw, 1241px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Find Serial Number<\/strong><\/p>\n\n\n\n<p>If you&#8217;re looking for just the serial number, you can filter the output using grep:<\/p>\n\n\n\n<pre>sudo dmidecode -t 2 | grep -i serial<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1224\" height=\"135\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-3.png\" alt=\"\" class=\"wp-image-13215\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-3.png 1224w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-3-300x33.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-3-1024x113.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-3-768x85.png 768w\" sizes=\"(max-width: 1224px) 100vw, 1224px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>It returns the lines having the serial number of the motherboard.<\/p>\n\n\n\n<p>To find the serial number, utilize the <strong>dmidecode <\/strong>command with <strong>baseboard-serial-number<\/strong>:<\/p>\n\n\n\n<pre>sudo dmidecode -s baseboard-serial-number<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1244\" height=\"142\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-4.png\" alt=\"\" class=\"wp-image-13216\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-4.png 1244w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-4-300x34.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-4-1024x117.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-4-768x88.png 768w\" sizes=\"(max-width: 1244px) 100vw, 1244px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Find Motherboard Model<\/strong><\/p>\n\n\n\n<p>To find the motherboard model, use the <strong>dmidecode <\/strong>command with the <strong>t <\/strong>option:<\/p>\n\n\n\n<pre>sudo dmidecode -t 2 | grep -i product<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1239\" height=\"139\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-5.png\" alt=\"\" class=\"wp-image-13217\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-5.png 1239w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-5-300x34.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-5-1024x115.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-5-768x86.png 768w\" sizes=\"(max-width: 1239px) 100vw, 1239px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>This command outputs a line containing the motherboard model.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2.-Using-sysfs-File-System\"><a id=\"post-13212-_5f4qqri4muxj\"><\/a>2. Using sysfs File System<\/h3>\n\n\n\n<p><a href=\"https:\/\/man7.org\/linux\/man-pages\/man5\/sysfs.5.html\">Linux&#8217;s sysfs file system<\/a> also contains information about your system&#8217;s hardware. You can navigate to <strong>\/sys\/class\/dmi\/id\/ <\/strong>and look for files like <strong>board_name<\/strong>, <strong>board_vendor<\/strong>, <strong>board_version<\/strong>, and <strong>board_serial<\/strong>. These files contain the respective information:<\/p>\n\n\n\n<pre>cd \/sys\/class\/dmi\/id\/<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1239\" height=\"344\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-6.png\" alt=\"\" class=\"wp-image-13218\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-6.png 1239w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-6-300x83.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-6-1024x284.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-6-768x213.png 768w\" sizes=\"(max-width: 1239px) 100vw, 1239px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Find Motherboard Model<\/strong><\/p>\n\n\n\n<p>To find the motherboard model, use the <strong>product_name<\/strong> with the <strong>cat <\/strong>utility:<\/p>\n\n\n\n<pre>cat product_name<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1241\" height=\"113\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-7.png\" alt=\"\" class=\"wp-image-13219\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-7.png 1241w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-7-300x27.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-7-1024x93.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-7-768x70.png 768w\" sizes=\"(max-width: 1241px) 100vw, 1241px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Find Serial Number<\/strong><\/p>\n\n\n\n<p>To find the motherboard serial number, use the <strong>dmidecode <\/strong>command with <strong>product_serial<\/strong>:<\/p>\n\n\n\n<pre>cat product_serial<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1250\" height=\"135\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-8.png\" alt=\"\" class=\"wp-image-13220\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-8.png 1250w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-8-300x32.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-8-1024x111.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-8-768x83.png 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a id=\"post-13212-_ts6a7bfsr6zi\"><\/a>3. Using lshw Command<\/h3>\n\n\n\n<p id=\"3.-Using-lshw-Command\">The tool <a href=\"https:\/\/linux.die.net\/man\/1\/lshw\"><strong>lshw<\/strong><\/a>, which stands for &#8220;<strong>list hardware<\/strong>&#8220;. It provides a comprehensive overview of your system&#8217;s hardware configuration. To get information about your motherboard, you can use the command:<\/p>\n\n\n\n<pre>sudo lshw -short<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1232\" height=\"821\" src=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-9.png\" alt=\"\" class=\"wp-image-13221\" srcset=\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-9.png 1232w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-9-300x200.png 300w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-9-1024x682.png 1024w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-9-768x512.png 768w, https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/word-image-13212-9-900x600.png 900w\" sizes=\"(max-width: 1232px) 100vw, 1232px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>It enlists all the hardware components, and users can look for the entries related to the &#8220;<strong>system<\/strong>&#8221; to find details about your motherboard.<\/p>\n\n\n\n<p><strong>Bonus Tip: GNOME&#8217;s System Information<\/strong><\/p>\n\n\n\n<p>For users of the GNOME desktop environment, the system information tool can provide a summary of your hardware, including the motherboard model. You can access it through the system settings or by searching for &#8220;<strong>system information<\/strong>&#8221; in the GNOME activities overview.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Conclusion\"><a id=\"post-13212-_dsnlkyg91pu2\"><\/a>Conclusion<\/h2>\n\n\n\n<p>Whether you&#8217;re a seasoned Linux user or new to the platform, finding your motherboard model is a task that can be accomplished with ease thanks to the variety of tools available. By using the command line utilities <strong>dmidecode, sysfs, <\/strong>and <strong>lshw<\/strong>, or you can quickly uncover the details of your system&#8217;s motherboard. With the steps outlined above, you can easily find your motherboard&#8217;s model and serial number on your Linux system. This information is invaluable for system upgrades, troubleshooting, and documentation.<\/p>\n\n\n\t\t\t\t\t\t\t<h3 style=\"margin-bottom:20px;display:block;width:100%;margin-top:10px\">Frequently Asked Questions <\/h3>\r\n\t\t\t\t\t\t<style>\r\n\t\t\t\t<style>\r\n#wpsm_accordion_13227 .wpsm_panel-heading{\r\n\tpadding:0px !important;\r\n}\r\n#wpsm_accordion_13227 .wpsm_panel-title {\r\n\tmargin:0px !important; \r\n\ttext-transform:none !important;\r\n\tline-height: 1 !important;\r\n}\r\n#wpsm_accordion_13227 .wpsm_panel-title a{\r\n\ttext-decoration:none;\r\n\toverflow:hidden;\r\n\tdisplay:block;\r\n\tpadding:0px;\r\n\tfont-size: 18px !important;\r\n\tfont-family: Open Sans !important;\r\n\tcolor:#000000 !important;\r\n\tborder-bottom:0px !important;\r\n}\r\n\r\n#wpsm_accordion_13227 .wpsm_panel-title a:focus {\r\noutline: 0px !important;\r\n}\r\n\r\n#wpsm_accordion_13227 .wpsm_panel-title a:hover, #wpsm_accordion_13227 .wpsm_panel-title a:focus {\r\n\tcolor:#000000 !important;\r\n}\r\n#wpsm_accordion_13227 .acc-a{\r\n\tcolor: #000000 !important;\r\n\tbackground-color:#e8e8e8 !important;\r\n\tborder-color: #ddd;\r\n}\r\n#wpsm_accordion_13227 .wpsm_panel-default > .wpsm_panel-heading{\r\n\tcolor: #000000 !important;\r\n\tbackground-color: #e8e8e8 !important;\r\n\tborder-color: #e8e8e8 !important;\r\n\tborder-top-left-radius: 0px;\r\n\tborder-top-right-radius: 0px;\r\n}\r\n#wpsm_accordion_13227 .wpsm_panel-default {\r\n\t\tborder:1px solid transparent !important;\r\n\t}\r\n#wpsm_accordion_13227 {\r\n\tmargin-bottom: 20px;\r\n\toverflow: hidden;\r\n\tfloat: none;\r\n\twidth: 100%;\r\n\tdisplay: block;\r\n}\r\n#wpsm_accordion_13227 .ac_title_class{\r\n\tdisplay: block;\r\n\tpadding-top: 12px;\r\n\tpadding-bottom: 12px;\r\n\tpadding-left: 15px;\r\n\tpadding-right: 15px;\r\n}\r\n#wpsm_accordion_13227  .wpsm_panel {\r\n\toverflow:hidden;\r\n\t-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .05);\r\n\tbox-shadow: 0 0px 0px rgba(0, 0, 0, .05);\r\n\t\tborder-radius: 4px;\r\n\t}\r\n#wpsm_accordion_13227  .wpsm_panel + .wpsm_panel {\r\n\t\tmargin-top: 5px;\r\n\t}\r\n#wpsm_accordion_13227  .wpsm_panel-body{\r\n\tbackground-color:#ffffff !important;\r\n\tcolor:#000000 !important;\r\n\tborder-top-color: #e8e8e8 !important;\r\n\tfont-size:16px !important;\r\n\tfont-family: Open Sans !important;\r\n\toverflow: hidden;\r\n\t\tborder: 2px solid #e8e8e8 !important;\r\n\t}\r\n\r\n#wpsm_accordion_13227 .ac_open_cl_icon{\r\n\tbackground-color:#e8e8e8 !important;\r\n\tcolor: #000000 !important;\r\n\tfloat:right !important;\r\n\tpadding-top: 12px !important;\r\n\tpadding-bottom: 12px !important;\r\n\tline-height: 1.0 !important;\r\n\tpadding-left: 15px !important;\r\n\tpadding-right: 15px !important;\r\n\tdisplay: inline-block !important;\r\n}\r\n\r\n\t\t\t\r\n\t\t\t<\/style>\t\r\n\t\t\t<\/style>\r\n\t\t\t<div class=\"wpsm_panel-group\" id=\"wpsm_accordion_13227\" >\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t<!-- Inner panel Start -->\r\n\t\t\t\t\t<div class=\"wpsm_panel wpsm_panel-default\">\r\n\t\t\t\t\t\t<div class=\"wpsm_panel-heading\" role=\"tab\" >\r\n\t\t\t\t\t\t  <h4 class=\"wpsm_panel-title\">\r\n\t\t\t\t\t\t\t<a  class=\"\"  data-toggle=\"collapse\" data-parent=\"#wpsm_accordion_13227 \" href=\"javascript:void(0)\" data-target=\"#ac_13227_collapse1\" onclick=\"do_resize()\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"ac_open_cl_icon fa fa-plus\"><\/span>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t<span class=\"ac_title_class\">\r\n\t\t\t\t\t\t\t\t\tHow can I find the motherboard model in Linux?\t\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t  <\/h4>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div id=\"ac_13227_collapse1\" class=\"wpsm_panel-collapse collapse \"  >\r\n\t\t\t\t\t\t  <div class=\"wpsm_panel-body\">\r\n\t\t\t\t\t\t\tYou can use the command <code>sudo dmidecode -t 2<\/code> to retrieve detailed information about the motherboard model in Linux. This command will display the model name and other related details.\t\t\t\t\t\t  <\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<!-- Inner panel End -->\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t<!-- Inner panel Start -->\r\n\t\t\t\t\t<div class=\"wpsm_panel wpsm_panel-default\">\r\n\t\t\t\t\t\t<div class=\"wpsm_panel-heading\" role=\"tab\" >\r\n\t\t\t\t\t\t  <h4 class=\"wpsm_panel-title\">\r\n\t\t\t\t\t\t\t<a  class=\"collapsed\"  data-toggle=\"collapse\" data-parent=\"#wpsm_accordion_13227 \" href=\"javascript:void(0)\" data-target=\"#ac_13227_collapse2\" onclick=\"do_resize()\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"ac_open_cl_icon fa fa-plus\"><\/span>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t<span class=\"ac_title_class\">\r\n\t\t\t\t\t\t\t\t\tHow can I find the motherboard serial number in Linux?\t\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t  <\/h4>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div id=\"ac_13227_collapse2\" class=\"wpsm_panel-collapse collapse \"  >\r\n\t\t\t\t\t\t  <div class=\"wpsm_panel-body\">\r\n\t\t\t\t\t\t\tTo find the motherboard serial number, use the command <code>sudo dmidecode -t baseboard<\/code> which will display the serial number along with other information about the motherboard.\t\t\t\t\t\t  <\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<!-- Inner panel End -->\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t<!-- Inner panel Start -->\r\n\t\t\t\t\t<div class=\"wpsm_panel wpsm_panel-default\">\r\n\t\t\t\t\t\t<div class=\"wpsm_panel-heading\" role=\"tab\" >\r\n\t\t\t\t\t\t  <h4 class=\"wpsm_panel-title\">\r\n\t\t\t\t\t\t\t<a  class=\"collapsed\"  data-toggle=\"collapse\" data-parent=\"#wpsm_accordion_13227 \" href=\"javascript:void(0)\" data-target=\"#ac_13227_collapse3\" onclick=\"do_resize()\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"ac_open_cl_icon fa fa-plus\"><\/span>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t<span class=\"ac_title_class\">\r\n\t\t\t\t\t\t\t\t\tDoes dmidecode work on all Linux distributions?\t\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t  <\/h4>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div id=\"ac_13227_collapse3\" class=\"wpsm_panel-collapse collapse \"  >\r\n\t\t\t\t\t\t  <div class=\"wpsm_panel-body\">\r\n\t\t\t\t\t\t\tYes, <code>dmidecode<\/code> works across most Linux distributions, but you may need to install it using <code>sudo apt install dmidecode<\/code> or similar, depending on your distro.\t\t\t\t\t\t  <\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<!-- Inner panel End -->\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t<!-- Inner panel Start -->\r\n\t\t\t\t\t<div class=\"wpsm_panel wpsm_panel-default\">\r\n\t\t\t\t\t\t<div class=\"wpsm_panel-heading\" role=\"tab\" >\r\n\t\t\t\t\t\t  <h4 class=\"wpsm_panel-title\">\r\n\t\t\t\t\t\t\t<a  class=\"collapsed\"  data-toggle=\"collapse\" data-parent=\"#wpsm_accordion_13227 \" href=\"javascript:void(0)\" data-target=\"#ac_13227_collapse4\" onclick=\"do_resize()\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"ac_open_cl_icon fa fa-plus\"><\/span>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t<span class=\"ac_title_class\">\r\n\t\t\t\t\t\t\t\t\tWhat if dmidecode doesn\u2019t show the motherboard details?\t\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t  <\/h4>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div id=\"ac_13227_collapse4\" class=\"wpsm_panel-collapse collapse \"  >\r\n\t\t\t\t\t\t  <div class=\"wpsm_panel-body\">\r\n\t\t\t\t\t\t\tIf <code>dmidecode<\/code> doesn't provide details, your system may have limited DMI data or be missing it. In such cases, try using other tools like <code>lshw<\/code>.\t\t\t\t\t\t  <\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<!-- Inner panel End -->\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t<!-- Inner panel Start -->\r\n\t\t\t\t\t<div class=\"wpsm_panel wpsm_panel-default\">\r\n\t\t\t\t\t\t<div class=\"wpsm_panel-heading\" role=\"tab\" >\r\n\t\t\t\t\t\t  <h4 class=\"wpsm_panel-title\">\r\n\t\t\t\t\t\t\t<a  class=\"collapsed\"  data-toggle=\"collapse\" data-parent=\"#wpsm_accordion_13227 \" href=\"javascript:void(0)\" data-target=\"#ac_13227_collapse5\" onclick=\"do_resize()\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"ac_open_cl_icon fa fa-plus\"><\/span>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t<span class=\"ac_title_class\">\r\n\t\t\t\t\t\t\t\t\tCan I find motherboard information without installing additional tools?\t\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t  <\/h4>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div id=\"ac_13227_collapse5\" class=\"wpsm_panel-collapse collapse \"  >\r\n\t\t\t\t\t\t  <div class=\"wpsm_panel-body\">\r\n\t\t\t\t\t\t\tYes, you can also try <code>lshw -short<\/code> or <code>lscpu<\/code> for a basic system overview, though these may not provide all motherboard details like serial number.\t\t\t\t\t\t  <\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<!-- Inner panel End -->\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\r\n<script type=\"text\/javascript\">\r\n\t\r\n\t\tfunction do_resize(){\r\n\r\n\t\t\tvar width=jQuery( '.wpsm_panel .wpsm_panel-body iframe' ).width();\r\n\t\t\tvar height=jQuery( '.wpsm_panel .wpsm_panel-body iframe' ).height();\r\n\r\n\t\t\tvar toggleSize = true;\r\n\t\t\tjQuery('iframe').animate({\r\n\t\t\t    width: toggleSize ? width : 640,\r\n\t\t\t    height: toggleSize ? height : 360\r\n\t\t\t  }, 250);\r\n\r\n\t\t\t  toggleSize = !toggleSize;\r\n\t\t}\r\n\t\t\r\n<\/script>\t\n\n    <div class=\"xs_social_share_widget xs_share_url after_content \t\tmain_content  wslu-style-1 wslu-share-box-shaped wslu-fill-colored wslu-none wslu-share-horizontal wslu-theme-font-no wslu-main_content\">\n\n\t\t\n        <ul>\n\t\t\t        <\/ul>\n    <\/div> \n","protected":false},"excerpt":{"rendered":"<p>The motherboard is the central hub of your computer, a complex piece of technology that connects all the components together. Linux, the powerhouse of operating systems used by developers and system administrators worldwide, offers many tools for hardware management and information retrieval. One of the most common yet critical pieces of information you might need [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":13225,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[43],"tags":[230,602,603,604],"class_list":["post-13212","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-linux","tag-motherboard","tag-motherboard-model","tag-motherboard-serial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Find Motherboard Model and Serial Number in Linux: Using Command Line - Greenwebpage Community<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Find Motherboard Model and Serial Number in Linux: Using Command Line - Greenwebpage Community\" \/>\n<meta property=\"og:description\" content=\"The motherboard is the central hub of your computer, a complex piece of technology that connects all the components together. Linux, the powerhouse of operating systems used by developers and system administrators worldwide, offers many tools for hardware management and information retrieval. One of the most common yet critical pieces of information you might need [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Greenwebpage Community\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-13T06:09:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-13T11:52:34+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Karim Buzdar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Karim Buzdar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\"},\"author\":{\"name\":\"Karim Buzdar\",\"@id\":\"https:\/\/greenwebpage.com\/community\/#\/schema\/person\/467c100c1d017bc081473ee0440680c8\"},\"headline\":\"How to Find Motherboard Model and Serial Number in Linux: Using Command Line\",\"datePublished\":\"2025-01-13T06:09:13+00:00\",\"dateModified\":\"2025-01-13T11:52:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\"},\"wordCount\":694,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/#organization\"},\"image\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg\",\"keywords\":[\"Linux\",\"Motherboard\",\"Motherboard Model\",\"Motherboard Serial\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\",\"url\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\",\"name\":\"How to Find Motherboard Model and Serial Number in Linux: Using Command Line - Greenwebpage Community\",\"isPartOf\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg\",\"datePublished\":\"2025-01-13T06:09:13+00:00\",\"dateModified\":\"2025-01-13T11:52:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage\",\"url\":\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg\",\"contentUrl\":\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg\",\"width\":1020,\"height\":600,\"caption\":\"Find Motherboard Model and Serial Number in Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/greenwebpage.com\/community\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Find Motherboard Model and Serial Number in Linux: Using Command Line\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/greenwebpage.com\/community\/#website\",\"url\":\"https:\/\/greenwebpage.com\/community\/\",\"name\":\"Greenwebpage Community\",\"description\":\"Get online in three steps with our wide range of web hosting solutions. Choose from professional business to enterprise options designed to meet your needs.\",\"publisher\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/greenwebpage.com\/community\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/greenwebpage.com\/community\/#organization\",\"name\":\"Greenwebpage Community\",\"url\":\"https:\/\/greenwebpage.com\/community\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/greenwebpage.com\/community\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2023\/10\/cropped-logomic.png\",\"contentUrl\":\"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2023\/10\/cropped-logomic.png\",\"width\":512,\"height\":512,\"caption\":\"Greenwebpage Community\"},\"image\":{\"@id\":\"https:\/\/greenwebpage.com\/community\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/greenwebpage.com\/community\/#\/schema\/person\/467c100c1d017bc081473ee0440680c8\",\"name\":\"Karim Buzdar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/greenwebpage.com\/community\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0628fcbcddd9bc5486245d2cf4a904dbcdeac9ad6c3098f49237094e9d513d0c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0628fcbcddd9bc5486245d2cf4a904dbcdeac9ad6c3098f49237094e9d513d0c?s=96&d=mm&r=g\",\"caption\":\"Karim Buzdar\"},\"sameAs\":[\"https:\/\/greenwebpage.com\"],\"url\":\"https:\/\/greenwebpage.com\/community\/author\/karim\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Find Motherboard Model and Serial Number in Linux: Using Command Line - Greenwebpage Community","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:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Find Motherboard Model and Serial Number in Linux: Using Command Line - Greenwebpage Community","og_description":"The motherboard is the central hub of your computer, a complex piece of technology that connects all the components together. Linux, the powerhouse of operating systems used by developers and system administrators worldwide, offers many tools for hardware management and information retrieval. One of the most common yet critical pieces of information you might need [&hellip;]","og_url":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/","og_site_name":"Greenwebpage Community","article_published_time":"2025-01-13T06:09:13+00:00","article_modified_time":"2025-01-13T11:52:34+00:00","og_image":[{"width":1020,"height":600,"url":"http:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg","type":"image\/jpeg"}],"author":"Karim Buzdar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Karim Buzdar","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#article","isPartOf":{"@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/"},"author":{"name":"Karim Buzdar","@id":"https:\/\/greenwebpage.com\/community\/#\/schema\/person\/467c100c1d017bc081473ee0440680c8"},"headline":"How to Find Motherboard Model and Serial Number in Linux: Using Command Line","datePublished":"2025-01-13T06:09:13+00:00","dateModified":"2025-01-13T11:52:34+00:00","mainEntityOfPage":{"@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/"},"wordCount":694,"commentCount":0,"publisher":{"@id":"https:\/\/greenwebpage.com\/community\/#organization"},"image":{"@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg","keywords":["Linux","Motherboard","Motherboard Model","Motherboard Serial"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/","url":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/","name":"How to Find Motherboard Model and Serial Number in Linux: Using Command Line - Greenwebpage Community","isPartOf":{"@id":"https:\/\/greenwebpage.com\/community\/#website"},"primaryImageOfPage":{"@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg","datePublished":"2025-01-13T06:09:13+00:00","dateModified":"2025-01-13T11:52:34+00:00","breadcrumb":{"@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#primaryimage","url":"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg","contentUrl":"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2025\/01\/Find-Motherboard-Model-and-Serial-Number-in-Linux.jpeg","width":1020,"height":600,"caption":"Find Motherboard Model and Serial Number in Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/greenwebpage.com\/community\/how-to-find-motherboard-model-and-serial-number-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/greenwebpage.com\/community\/"},{"@type":"ListItem","position":2,"name":"How to Find Motherboard Model and Serial Number in Linux: Using Command Line"}]},{"@type":"WebSite","@id":"https:\/\/greenwebpage.com\/community\/#website","url":"https:\/\/greenwebpage.com\/community\/","name":"Greenwebpage Community","description":"Get online in three steps with our wide range of web hosting solutions. Choose from professional business to enterprise options designed to meet your needs.","publisher":{"@id":"https:\/\/greenwebpage.com\/community\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/greenwebpage.com\/community\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/greenwebpage.com\/community\/#organization","name":"Greenwebpage Community","url":"https:\/\/greenwebpage.com\/community\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/greenwebpage.com\/community\/#\/schema\/logo\/image\/","url":"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2023\/10\/cropped-logomic.png","contentUrl":"https:\/\/greenwebpage.com\/community\/wp-content\/uploads\/2023\/10\/cropped-logomic.png","width":512,"height":512,"caption":"Greenwebpage Community"},"image":{"@id":"https:\/\/greenwebpage.com\/community\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/greenwebpage.com\/community\/#\/schema\/person\/467c100c1d017bc081473ee0440680c8","name":"Karim Buzdar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/greenwebpage.com\/community\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0628fcbcddd9bc5486245d2cf4a904dbcdeac9ad6c3098f49237094e9d513d0c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0628fcbcddd9bc5486245d2cf4a904dbcdeac9ad6c3098f49237094e9d513d0c?s=96&d=mm&r=g","caption":"Karim Buzdar"},"sameAs":["https:\/\/greenwebpage.com"],"url":"https:\/\/greenwebpage.com\/community\/author\/karim\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/posts\/13212","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/comments?post=13212"}],"version-history":[{"count":6,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/posts\/13212\/revisions"}],"predecessor-version":[{"id":13235,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/posts\/13212\/revisions\/13235"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/media\/13225"}],"wp:attachment":[{"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/media?parent=13212"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/categories?post=13212"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/greenwebpage.com\/community\/wp-json\/wp\/v2\/tags?post=13212"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}