{"id":1802,"date":"2023-11-11T15:14:45","date_gmt":"2023-11-11T14:14:45","guid":{"rendered":"https:\/\/bergs.biz\/blog\/?p=1802"},"modified":"2025-07-11T10:59:49","modified_gmt":"2025-07-11T08:59:49","slug":"a-deep-dive-into-uefi-booting","status":"publish","type":"post","link":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/","title":{"rendered":"A deep-dive into UEFI Booting"},"content":{"rendered":"\n<p>[According to my own standards, this post about &#8220;UEFI booting&#8221; was only like 70% &#8220;ready&#8221; &#8212; I had it pending in &#8220;draft&#8221; state for many months, because I was lacking the time to finish it&#8230; I now decided to release it in its current state, simply because I believe it will still be very useful to many people interested in the topic&#8230;]<\/p>\n\n\n\n<p>Before we actually dive deep into how <a href=\"https:\/\/en.wikipedia.org\/wiki\/UEFI\">UEFI<\/a> booting works, a short and simple introduction is due.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>What is UEFI, anyway?<\/p>\n\n\n\n<p>UEFI could be called the successor of the old <a href=\"https:\/\/en.wikipedia.org\/wiki\/BIOS\">BIOS<\/a> concept. It is a unified version and successor of &#8220;EFI&#8221;, which was an architecture for a platform firmware used to boot operating systems (in the following abbreviated as &#8220;OS&#8221;), and the corresponding interface to interact with the firmware and the operating system.<\/p>\n\n\n\n<p>The advantages of UEFI over the traditional BIOS are, among others, the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Boot disks with large partitions (over 2 TB), using GUID partitioning (GPT),<\/li>\n\n\n\n<li>network capabilities already in pre-OS phase, and<\/li>\n\n\n\n<li>modular design.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Boot Mechanism<\/h2>\n\n\n\n<p>So, how does booting with UEFI work?<\/p>\n\n\n\n<p>When you enter your UEFI, you will find a user interface that shows all devices that have been detected, and that support booting. Usually that includes all your hard drives.<\/p>\n\n\n\n<p>You can freely define a desired boot order (regardless of hardware paths, i.e. the way your drives are connected, be it via an SATA port, be it via an NVME slot), i. e. the primary OS that should be booted, if that fails the next OS that should be tried, etc. That&#8217;s called your &#8220;boot configuration&#8221;, and it resides in your motherboard&#8217;s <a href=\"https:\/\/en.wikipedia.org\/wiki\/Non-volatile_random-access_memory\">NVRAM<\/a>. (a concept that&#8217;s basically the successor of what used to be called &#8220;<a href=\"https:\/\/en.wikipedia.org\/wiki\/Nonvolatile_BIOS_memory\">CMOS<\/a>&#8221; in the old days of the BIOS). More specifically, we speak about &#8220;<a href=\"https:\/\/wiki.archlinux.org\/title\/Unified_Extensible_Firmware_Interface#UEFI_variables\">UEFI Variables<\/a>&#8220;, which allow the OS and the firmware to interact.<\/p>\n\n\n\n<p>When UEFI&#8217;s Firmware Boot Manager wants to boot an OS, it first needs to load something called the OS &#8220;Boot Manager.&#8221; Common OS boot managers are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>BOOTMGFW.EFI used to load Windows, or<\/li>\n\n\n\n<li>SHIMX64.EFI used to load Linux<\/li>\n<\/ul>\n\n\n\n<p>The OS boot manager is located on the &#8220;<a href=\"https:\/\/en.wikipedia.org\/wiki\/EFI_system_partition\">EFI system partition<\/a>&#8221; (ESP). This is a small partition (usually only a few 100 M) at the start of your hard drive, formatted with basically a <a href=\"https:\/\/en.wikipedia.org\/wiki\/File_Allocation_Table\">FAT<\/a> filesystem. FAT is a very simple filesystem, so that the code to parse it and load files from it can be reasonably small and fit into a boot firmware.<\/p>\n\n\n\n<p>A typical disk layout for a Windows installation may look as follows:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"589\" height=\"103\" src=\"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png\" alt=\"\" class=\"wp-image-1809\" srcset=\"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png 589w, https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image-150x26.png 150w, https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image-300x52.png 300w\" sizes=\"auto, (max-width: 589px) 100vw, 589px\" \/><figcaption class=\"wp-element-caption\">UEFI  \/EFI System Partition as seen under Windows<\/figcaption><\/figure>\n\n\n\n<p>The first partition is the ESP, then comes the Windows boot and system drive (with a drive letter of C:), and then comes the <a href=\"https:\/\/techcommunity.microsoft.com\/t5\/windows-it-pro-blog\/windows-recovery-environment-explained\/ba-p\/2273533\">recovery partition<\/a>.<\/p>\n\n\n\n<p>Apart from boot loaders, the ESP can contain kernel images or (device) drivers, e. g. to support hardware that must be initialized prior to the start of the OS, or to give access to a complex filesystem that holds the actual OS to be booted.<\/p>\n\n\n\n<p>Depending on which OS you want to boot, the OS boot manager then loads <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>in the case of Linux: the OS kernel, and the kernel in turn loads the OS, or<\/li>\n\n\n\n<li>in the case of Windows: the <a href=\"https:\/\/learn.microsoft.com\/en-us\/windows-hardware\/manufacture\/desktop\/bcd-system-store-settings-for-uefi\">Windows Boot Loader<\/a> (<code>\\Windows\\system32\\winload.efi<\/code>)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Boot Configuration Details<\/h2>\n\n\n\n<p>Now that we got a good overview of the mechanism as a whole, let&#8217;s dive into the details. Let&#8217;s look at the boot configuration of my machine. To do so, invoke the below command (I did it under Ubuntu 23.04, but it should work the same under any reasonably current Linux distro where the tool is installed):<\/p>\n\n\n\n<code># efibootmgr -v<\/code>\n<pre>BootCurrent: 0003\nTimeout: 1 seconds\nBootOrder: 0000,0002,0003\nBoot0000* Windows Boot Manager    HD(1,GPT,a39d5736-7aaf-4be0-b6b6-0852ba2f7803,0x800,0x32000)\/File(\\EFI\\MICROSOFT\\BOOT\\BOOTMGFW.EFI)WINDOWS\u2026\u2026\u2026x\u2026B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}\u2026R\u2026\u2026\u2026\u2026\u2026.\nBoot0002* ubuntu    HD(1,GPT,280ea55d-c182-5242-bb52-a2b40812190c,0x800,0x219800)\/File(\\EFI\\UBUNTU\\SHIMX64.EFI)..BO\nBoot0003* ubuntu    HD(1,GPT,91b56f9f-3526-404b-b681-1c684551ec4f,0x800,0xd87be)\/File(\\EFI\\UBUNTU\\SHIMX64.EFI)..BO\n<\/pre>\n\n\n\n<p>So, what does the above tell us? First, we see that &#8220;<code>(Boot)0003<\/code>&#8221; is the boot entry used to start the currently running system. Secondly, the order in which boot is tried is <code>0000<\/code>, <code>0002<\/code>, and then <code>0003<\/code>. So by default, Windows (by the &#8220;Windows Boot Manager&#8221;) will be booted. Then we see the three boot entries. The star\/asterisk (<code>*<\/code>) after the boot entry shows that all these entries are &#8220;active.&#8221;<\/p>\n\n\n\n<p>What about the remaining info in the above command output? Immediately after the boot entry, we see the names that are also displayed on screen by the Firmware Boot Manager (&#8220;Windows Boot Manager&#8221; and two times &#8220;ubuntu&#8221;). We then see references to the ESPs used to boot these OS.<\/p>\n\n\n\n<p><code>HD<\/code> obviously means &#8220;hard drive&#8221;, then we see a <code>1<\/code> which refers to the first partition on the respective drive, then we see <code>GPT<\/code> which refers to the partitioning table format, and then we see a UUID. To find the respective partitions, we can use the below command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># blkid --match-token TYPE=vfat<br \/>\/dev\/nvme0n1p1: LABEL=\"UBUNTU_TEMP\" UUID=\"EC76-8E7F\" BLOCK_SIZE=\"512\" TYPE=\"vfat\" PARTUUID=\"280ea55d-c182-5242-bb52-a2b40812190c\"<br \/>\/dev\/nvme1n1p1: SEC_TYPE=\"msdos\" LABEL_FATBOOT=\"UBUNTU_MAIN\" LABEL=\"UBUNTU_MAIN\" UUID=\"8140-E4C0\" BLOCK_SIZE=\"512\" TYPE=\"vfat\" PARTLABEL=\"EFI\" PARTUUID=\"91b56f9f-3526-404b-b681-1c684551ec4f\"<br \/>\/dev\/sda1: UUID=\"40AD-1127\" BLOCK_SIZE=\"512\" TYPE=\"vfat\" PARTUUID=\"a39d5736-7aaf-4be0-b6b6-0852ba2f7803\"<\/pre>\n\n\n\n<p>The <code>PARTUUID<\/code> values in the above output match the UUIDs in the boot configuration as shown by <code>efibootmgr<\/code>. So, the ESPs are located by searching for the partitions&#8217; UUIDs. That means that you can replug your drives to different ports, or even copy partitions to different drives, and the UEFI boot mechanism will still find them. That&#8217;s a nice and very stable design.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">UEFI User Interface<\/h2>\n\n\n\n<p>Now, let&#8217;s enter the UEFI and look at some of the details there. My PC&#8217;s motherboard is an MSI, and to enter the UEFI I need to press &#8220;F2&#8221; after the beep when powering on the PC (from &#8220;off&#8221; state, not when suspended to RAM, i.e. &#8220;sleeping&#8221;!) or restarting it.<br \/><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># lspci<br \/>[...]<br \/>21:00.0 Non-Volatile memory controller: Sandisk Corp WD Blue SN570 NVMe SSD 1TB<br \/>2b:00.0 Non-Volatile memory controller: Sandisk Corp WD Blue SN570 NVMe SSD 1TB<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><br \/><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Deep-dive into UEFI<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,122,33,133,40],"tags":[232,20,372,373],"class_list":["post-1802","post","type-post","status-publish","format-standard","hentry","category-computers","category-english","category-linux-computers","category-storage-computers","category-windows","tag-boot-loader","tag-linux","tag-uefi","tag-windows"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>A deep-dive into UEFI Booting - Ralf&#039;s Blog<\/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:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A deep-dive into UEFI Booting - Ralf&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"Deep-dive into UEFI\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/\" \/>\n<meta property=\"og:site_name\" content=\"Ralf&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-11T14:14:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-11T08:59:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png\" \/>\n<meta name=\"author\" content=\"Ralf Bergs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ralfbergs\" \/>\n<meta name=\"twitter:site\" content=\"@ralfbergs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ralf Bergs\" \/>\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:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/\"},\"author\":{\"name\":\"Ralf Bergs\",\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/#\\\/schema\\\/person\\\/354e37390b493c875f972bd313d29201\"},\"headline\":\"A deep-dive into UEFI Booting\",\"datePublished\":\"2023-11-11T14:14:45+00:00\",\"dateModified\":\"2025-07-11T08:59:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/\"},\"wordCount\":888,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/#\\\/schema\\\/person\\\/354e37390b493c875f972bd313d29201\"},\"image\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/image.png\",\"keywords\":[\"boot loader\",\"linux\",\"uefi\",\"Windows\"],\"articleSection\":[\"Computers\",\"English\",\"Linux\",\"Storage\",\"Windows\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/\",\"url\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/\",\"name\":\"A deep-dive into UEFI Booting - Ralf&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/image.png\",\"datePublished\":\"2023-11-11T14:14:45+00:00\",\"dateModified\":\"2025-07-11T08:59:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/image.png\",\"width\":589,\"height\":103},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/2023\\\/11\\\/11\\\/a-deep-dive-into-uefi-booting\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A deep-dive into UEFI Booting\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/\",\"name\":\"Ralf's Blog\",\"description\":\"Just another WordPress weblog\",\"publisher\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/#\\\/schema\\\/person\\\/354e37390b493c875f972bd313d29201\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/#\\\/schema\\\/person\\\/354e37390b493c875f972bd313d29201\",\"name\":\"Ralf Bergs\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Ralf-Tower-2026-1024x1024.jpg\",\"url\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Ralf-Tower-2026-1024x1024.jpg\",\"contentUrl\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Ralf-Tower-2026-1024x1024.jpg\",\"width\":1024,\"height\":1024,\"caption\":\"Ralf Bergs\"},\"logo\":{\"@id\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Ralf-Tower-2026-1024x1024.jpg\"},\"description\":\"Geek, computer guy, licensed and certified electrical and computer engineer, husband, best daddy.\",\"sameAs\":[\"https:\\\/\\\/bergs.biz\\\/\",\"https:\\\/\\\/linkedin.com\\\/in\\\/ralfbergs\\\/\",\"https:\\\/\\\/x.com\\\/ralfbergs\"],\"url\":\"https:\\\/\\\/bergs.biz\\\/blog\\\/author\\\/rabe\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A deep-dive into UEFI Booting - Ralf&#039;s Blog","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:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/","og_locale":"en_US","og_type":"article","og_title":"A deep-dive into UEFI Booting - Ralf&#039;s Blog","og_description":"Deep-dive into UEFI","og_url":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/","og_site_name":"Ralf&#039;s Blog","article_published_time":"2023-11-11T14:14:45+00:00","article_modified_time":"2025-07-11T08:59:49+00:00","og_image":[{"url":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png","type":"","width":"","height":""}],"author":"Ralf Bergs","twitter_card":"summary_large_image","twitter_creator":"@ralfbergs","twitter_site":"@ralfbergs","twitter_misc":{"Written by":"Ralf Bergs","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#article","isPartOf":{"@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/"},"author":{"name":"Ralf Bergs","@id":"https:\/\/bergs.biz\/blog\/#\/schema\/person\/354e37390b493c875f972bd313d29201"},"headline":"A deep-dive into UEFI Booting","datePublished":"2023-11-11T14:14:45+00:00","dateModified":"2025-07-11T08:59:49+00:00","mainEntityOfPage":{"@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/"},"wordCount":888,"commentCount":0,"publisher":{"@id":"https:\/\/bergs.biz\/blog\/#\/schema\/person\/354e37390b493c875f972bd313d29201"},"image":{"@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#primaryimage"},"thumbnailUrl":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png","keywords":["boot loader","linux","uefi","Windows"],"articleSection":["Computers","English","Linux","Storage","Windows"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/","url":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/","name":"A deep-dive into UEFI Booting - Ralf&#039;s Blog","isPartOf":{"@id":"https:\/\/bergs.biz\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#primaryimage"},"image":{"@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#primaryimage"},"thumbnailUrl":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png","datePublished":"2023-11-11T14:14:45+00:00","dateModified":"2025-07-11T08:59:49+00:00","breadcrumb":{"@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#primaryimage","url":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png","contentUrl":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2023\/05\/image.png","width":589,"height":103},{"@type":"BreadcrumbList","@id":"https:\/\/bergs.biz\/blog\/2023\/11\/11\/a-deep-dive-into-uefi-booting\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bergs.biz\/blog\/"},{"@type":"ListItem","position":2,"name":"A deep-dive into UEFI Booting"}]},{"@type":"WebSite","@id":"https:\/\/bergs.biz\/blog\/#website","url":"https:\/\/bergs.biz\/blog\/","name":"Ralf's Blog","description":"Just another WordPress weblog","publisher":{"@id":"https:\/\/bergs.biz\/blog\/#\/schema\/person\/354e37390b493c875f972bd313d29201"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bergs.biz\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/bergs.biz\/blog\/#\/schema\/person\/354e37390b493c875f972bd313d29201","name":"Ralf Bergs","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2026\/04\/Ralf-Tower-2026-1024x1024.jpg","url":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2026\/04\/Ralf-Tower-2026-1024x1024.jpg","contentUrl":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2026\/04\/Ralf-Tower-2026-1024x1024.jpg","width":1024,"height":1024,"caption":"Ralf Bergs"},"logo":{"@id":"https:\/\/bergs.biz\/blog\/wp-content\/uploads\/2026\/04\/Ralf-Tower-2026-1024x1024.jpg"},"description":"Geek, computer guy, licensed and certified electrical and computer engineer, husband, best daddy.","sameAs":["https:\/\/bergs.biz\/","https:\/\/linkedin.com\/in\/ralfbergs\/","https:\/\/x.com\/ralfbergs"],"url":"https:\/\/bergs.biz\/blog\/author\/rabe\/"}]}},"_links":{"self":[{"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/posts\/1802","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/comments?post=1802"}],"version-history":[{"count":8,"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/posts\/1802\/revisions"}],"predecessor-version":[{"id":2034,"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/posts\/1802\/revisions\/2034"}],"wp:attachment":[{"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/media?parent=1802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/categories?post=1802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bergs.biz\/blog\/wp-json\/wp\/v2\/tags?post=1802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}