Initial commit

This commit is contained in:
Dichgrem 2024-03-15 14:31:42 +08:00
parent 471ed9efe7
commit 2ffedcb19f
22 changed files with 1010 additions and 217 deletions

View File

@ -0,0 +1,93 @@
+++
title = "Talkabout:BIOS-UEFI-MBR-GPT-GRUB"
date = 2024-03-15
[taxonomies]
tags = ["GRUB","BIOS","UEFI"]
+++
前言 在计算机领域系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFIMBR与GPT以及它们之间的异同点。此外我们还会讨论与这些概念密切相关的引导加载程序——GRUB。
<!-- more -->
## BIOS
> BIOSBasic Input Output System直译成中文名称就是"`基本输入输出系统`"。它是一组固化到主板中一个ROM芯片上的程序它可以从CMOS中读写系统设置的具体信息。此程序保存着计算机最重要的基本输入输出程序、开机后的自检程序和系统自启动程序。简单来说BIOS只认识设备不认识分区、不认识文件。
## UEFI
> UEFI统一可扩展固件接口是一个公开的规范定义了操作系统和平台固件之间的软件接口。UEFI 是传统 PC BIOS 的继承者是取代传统BIOS的相比传统BIOS来说它更易实现容错和纠错特性也更强。
它将引导数据存储在 .efi 文件中,而不是固件中。你经常会在新款的主板中找到 UEFI 启动模式。UEFI 启动模式包含一个特殊的 EFI 分区,用于存储 .efi 文件并用于引导过程和引导加载程序。
>
> UEFI使用GPT的分区引导方案支持更大的硬盘。由于省去了BIOS自检的过程所以启动速度更快。传统BIOS主要支持MBR引导UEFI则是取代传统BIOS它加入了对新硬件的支持其中就有支持2TB以上硬盘。
## MBR
> 全新硬盘在使用之前必须进行分区格式化,硬盘分区初始化的格式主要有两种,分别为`MBR`格式和`GPT`格式。MBR是传统的分区表类型当一台电脑启动时它会先启动主板上的BIOS系统BIOS再从硬盘上读取MBR主引导记录硬盘上的MBR运行后就会启动操作系统但最大的缺点则是不支持容量大于2T的硬盘。
## GPT
> 而GPT是另一种更先进的磁盘系统分区方式它的出现弥补了MBR这个缺点最大支持`18EB`的硬盘,是基于`UEFI`使用的磁盘分区架构。目前所有Windows系统均支持`MBR`,而`GPT`只有`64`位系统才能支持。`BIOS只支持MBR引导系统而GPT仅可用UEFI引导系统`。正因为这样现在主板大多采用BIOS集成UEFI或UEFI集成BIOS以此达到同时兼容MBR和GPT引导系统的目的。
## GRUB
> GRUBGRand unified bootloader,多操作系统启动程序。它允许用户可以在计算机内同时拥有多个操作系统,并在计算机启动时选择希望运行的操作系统。
>
> GRUB可用于选择操作系统分区上的不同内核也可用于向这些内核传递启动参数。`它是一个多重操作系统启动管理器,用来引导不同系统`如Windows、Linux。Linux常见的引导程序包括LILO、GRUB、GRUB2。
## Legacy
> 如果你遇到过刚制作的U盘启动盘无法启动或者新买的固态硬盘做好系统后无法启动那么大概率的问题就出现在BIOS的引导模式的选择上是UEFI还是Legacy。legacy启动模式是指BIOS 固件用来初始化硬件设备的引导过程Legacy启动模式包含一系列已安装的设备这些设备在引导过程中计算机执行 POST (开机自检)测试时会被初始化。传统引导将检查所有连接设备的主引导记录 (MBR),通常位于磁盘的第一个扇区。
当它在设备中找不到引导加载程序时Legacy会切换到列表中的下一个设备并不断重复此过程直到找到引导加载程序否则返回错误。
| BIOS | UEFI |
| ---------------------------------- | --------------------------------------------------------------- |
| 用于初始化计算机硬件并引导操作系统 | 在计算机启动时运行 |
| 具有较少功能和灵活性 | 具有更多功能和灵活性 |
| | 支持更大的硬盘容量、更快的启动速度、更好的安全性和更多的扩展性v |
| | 通常具有图形用户界面GUI |
| MBR | GPT |
| ----------------------------------------- | ---------------------------------------------------------------------------------- |
| 用于分区磁盘并存储分区布局信息 | 用于分区磁盘并存储分区布局信息 |
| 支持最多4个主分区或3个主分区加1个扩展分区 | 支持最多4个主分区或3个主分区加1个扩展分区支持最多4个主分区或3个主分区加1个扩展分区 |
| | 具有更好的数据完整性和可靠性,使用校验和检测数据损坏 |
| | UEFI需要GPT格式的磁盘才能引导 |
| GRUB |
| -------------------------------------------------------------------------------- |
| 用于在计算机系统启动时加载操作系统的引导加载程序与BIOS、UEFI、MBR、GPT都有关联 |
| 能够与BIOS或UEFI兼容可以在MBR或GPT格式的磁盘上运行 |
| 通常用于多引导系统,可以在多个操作系统之间进行选择,并提供了灵活的配置选项 |
| UEFI 引导模式 | Legacy引导模式 |
| ------------------------------------------------------------------------------------------------ | -------------------------------------------------------------- |
| UEFI 提供了更好的用户界面 | Legacy引导模式是传统的且非常基本的 |
| 使用 GPT 分区方案 | 使用 MBR 分区方案 |
| UEFI 提供更快的启动时间 | 相比UEFI它的速度较慢 |
| 由于 UEFI 使用 GPT 分区方案,因此它可以支持多达 9 zB 的存储设备 | Legacy使用的 MBR 分区方案仅支持最多 2 TB 存储设备 |
| UEFI 以 32 位和 64 位运行,支持鼠标和触摸板 | Legacy在仅支持键盘仅 16 位模式下运行 |
| 它允许安全启动防止加载未经授权的应用程序它还可能阻碍双启动因为它将操作系统OS视为应用程序 | 它不提供允许加载未经授权的应用程序的安全启动方法,未限制双启动 |
| 它具有更简单的更新过程 | 与UEFI相比它更复杂 |
## 组合
- **BIOS+MBR**
这是最传统的,系统都会支持;唯一的缺点就是`不支持容量大于2T的硬盘`
- **BIOS+GPT**
BIOS是可以使用GPT分区表的硬盘来作为数据盘的但不能引导系统若电脑同时带有容量小于2T的硬盘和容量大于2T的硬盘`小于2T的可以用MBR分区表安装系统而大于2T的可以使用GPT分区表来存放资料`。但系统须使用64位系统。
- **UEFI+MBR**
可以把UEFI设置成`Legacy模式`传统模式让其支持传统MBR启动效果同`BIOS+MBR`也可以建立FAT分区放置UEFI启动文件来可应用在U盘和移动硬盘上实现双模式启动。
- **UEFI+GPT**
如果要把大于2T的硬盘作为系统盘来安装系统的话就必须`UEFI+GPT`。而且系统须使用64位系统否则无法引导。但系统又不是传统在PE下安装后就能直接使用的引导还得经过处理才行。

View File

@ -1,5 +1,5 @@
+++
title = "个人博客搭建记"
title = "Personal Blog"
date = 2024-03-12
[taxonomies]

View File

@ -79,6 +79,18 @@
<ul><li class="post-list">
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<span class="post-date">2024-03-15</span>
:: <span class="post-list-title">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</span></a>
<span class="post-tags-inline">
::
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
</li>
<li class="post-list">
<a href="https://blog.dich.ink/terminal-console-shell/">
<span class="post-date">2024-03-12</span>
:: <span class="post-list-title">TerminalConsole and Shell</span></a>
@ -93,7 +105,7 @@
<li class="post-list">
<a href="https://blog.dich.ink/zola-blog/">
<span class="post-date">2024-03-12</span>
:: <span class="post-list-title">个人博客搭建记</span></a>
:: <span class="post-list-title">Personal Blog</span></a>
<span class="post-tags-inline">
::

View File

@ -5,8 +5,28 @@
<link rel="self" type="application/atom+xml" href="https://blog.dich.ink/atom.xml"/>
<link rel="alternate" type="text/html" href="https://blog.dich.ink"/>
<generator uri="https://www.getzola.org/">Zola</generator>
<updated>2024-03-12T00:00:00+00:00</updated>
<updated>2024-03-15T00:00:00+00:00</updated>
<id>https://blog.dich.ink/atom.xml</id>
<entry xml:lang="en">
<title>Talkabout:BIOS-UEFI-MBR-GPT-GRUB</title>
<published>2024-03-15T00:00:00+00:00</published>
<updated>2024-03-15T00:00:00+00:00</updated>
<author>
<name>
Unknown
</name>
</author>
<link rel="alternate" type="text/html" href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/"/>
<id>https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/</id>
<summary type="html">&lt;p&gt;前言 在计算机领域系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFIMBR与GPT以及它们之间的异同点。此外我们还会讨论与这些概念密切相关的引导加载程序——GRUB。&lt;&#x2F;p&gt;
</summary>
</entry>
<entry xml:lang="en">
<title>TerminalConsole and Shell</title>
<published>2024-03-12T00:00:00+00:00</published>
@ -28,7 +48,7 @@
</entry>
<entry xml:lang="en">
<title>个人博客搭建记</title>
<title>Personal Blog</title>
<published>2024-03-12T00:00:00+00:00</published>
<updated>2024-03-12T00:00:00+00:00</updated>

View File

@ -76,6 +76,42 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-15
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
<div class="post-content">
<p>前言 在计算机领域系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFIMBR与GPT以及它们之间的异同点。此外我们还会讨论与这些概念密切相关的引导加载程序——GRUB。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/terminal-console-shell/">TerminalConsole and Shell</a></h1>
<div class="post-meta-inline">
@ -112,7 +148,7 @@
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/zola-blog/">个人博客搭建记</a></h1>
<h1 class="post-title"><a href="https://blog.dich.ink/zola-blog/">Personal Blog</a></h1>
<div class="post-meta-inline">
<span class="post-date">
@ -143,42 +179,6 @@
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/opensourcesoftware-licenses/">开源软件与协议</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-04
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/licenses/">#licenses</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/open/">#open</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/software/">#software</a></span>
<div class="post-content">
<p>前言 本文旨在介绍开源软件许可证,这些许可证规定了使用、修改和分发开源软件的条件。通过了解不同类型的开源许可证及其特点,读者将能够更好地理解在开发和使用开源软件时的法律和道德责任。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/opensourcesoftware-licenses/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">

View File

@ -191,7 +191,7 @@
<span class="button next">
<a href="https://blog.dich.ink/zola-blog/">
<span class="button__text">个人博客搭建记</span>&nbsp;
<span class="button__text">Personal Blog</span>&nbsp;
<span class="button__icon"></span>
</a>
</span>

View File

@ -76,6 +76,42 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/opensourcesoftware-licenses/">开源软件与协议</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-04
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/licenses/">#licenses</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/open/">#open</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/software/">#software</a></span>
<div class="post-content">
<p>前言 本文旨在介绍开源软件许可证,这些许可证规定了使用、修改和分发开源软件的条件。通过了解不同类型的开源许可证及其特点,读者将能够更好地理解在开发和使用开源软件时的法律和道德责任。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/opensourcesoftware-licenses/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/routing/">路由器原理与组网</a></h1>
<div class="post-meta-inline">
@ -141,40 +177,6 @@
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/rss-read/">RSS阅读指南</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-01-20
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/rss/">#RSS</a></span>
<div class="post-content">
<p>前言 RSS提供了一种数据格式以XML可扩展标记语言的形式组织信息包括文章标题、摘要、链接和发布日期等。这些信息形成了所谓的“订阅源”Feed用户可以使用RSS阅读器Feed Reader来订阅这些源。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/rss-read/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">

View File

@ -76,6 +76,40 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/rss-read/">RSS阅读指南</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-01-20
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/rss/">#RSS</a></span>
<div class="post-content">
<p>前言 RSS提供了一种数据格式以XML可扩展标记语言的形式组织信息包括文章标题、摘要、链接和发布日期等。这些信息形成了所谓的“订阅源”Feed用户可以使用RSS阅读器Feed Reader来订阅这些源。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/rss-read/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/chatogpt/">如何高效地向 ChatGPT 提问</a></h1>
<div class="post-meta-inline">
@ -140,41 +174,6 @@
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/advertising-algorithms/">广告推荐算法与实例</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-12-25
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/advertising/">#Advertising</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/algorithms/">#algorithms</a></span>
<div class="post-content">
<p>前言 广告算法的目标是为了直接增加公司收入。推荐算法虽然本质上也是为了增加公司收入,但其直接目标是为了增加用户的参与度。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/advertising-algorithms/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">

View File

@ -76,6 +76,41 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/advertising-algorithms/">广告推荐算法与实例</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-12-25
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/advertising/">#Advertising</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/algorithms/">#algorithms</a></span>
<div class="post-content">
<p>前言 广告算法的目标是为了直接增加公司收入。推荐算法虽然本质上也是为了增加公司收入,但其直接目标是为了增加用户的参与度。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/advertising-algorithms/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/about-working/">应届生工作指南</a></h1>
<div class="post-meta-inline">
@ -141,40 +176,6 @@
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/mechrev-keyboard/">机械革命键盘失灵拯救记</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-09-04
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/keyboard/">#keyboard</a></span>
<div class="post-content">
<p>前言 机械革命作为一款极高性价比的笔记本其优惠的力度和问题不断的故障让玩家们爱恨交织作者在其上安装Linux时遇到了键盘失灵的问题为了避免更多人踩坑故写本文。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/mechrev-keyboard/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">

View File

@ -76,6 +76,40 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/mechrev-keyboard/">机械革命键盘失灵拯救记</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-09-04
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/keyboard/">#keyboard</a></span>
<div class="post-content">
<p>前言 机械革命作为一款极高性价比的笔记本其优惠的力度和问题不断的故障让玩家们爱恨交织作者在其上安装Linux时遇到了键盘失灵的问题为了避免更多人踩坑故写本文。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/mechrev-keyboard/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/accurate-pronunciation/">常见发音错误术语集合</a></h1>
<div class="post-meta-inline">
@ -140,40 +174,6 @@
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/kgnl/">快过年了笑话大全</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-23
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/kgnl/">#KGNL</a></span>
<div class="post-content">
<p>前言 快过年了系列笑话常常于过年期间在各大平台传播反应了各技术人士的爱好与工作。本文收集了24个该系列的笑话欢迎补充。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/kgnl/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">

View File

@ -76,6 +76,40 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/kgnl/">快过年了笑话大全</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-23
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/kgnl/">#KGNL</a></span>
<div class="post-content">
<p>前言 快过年了系列笑话常常于过年期间在各大平台传播反应了各技术人士的爱好与工作。本文收集了24个该系列的笑话欢迎补充。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/kgnl/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/chromebook/">ChromeBook研究记</a></h1>
<div class="post-meta-inline">
@ -141,40 +175,6 @@
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/android-tv/">Android TV 折腾小记</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-08
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/android-tv/">#android-TV</a></span>
<div class="post-content">
<p>前言 由于AppleTV的高昂的售价和普通电视盒子广告的泛滥一台开源、多功能的原生安卓电视盒子逐渐成为智能家居的必备神器。出于对IPTV、YouTube和家庭影院等需求以及对一面赏心悦目电视墙的期待这里分享Android TV 以下简称ATV安装的一些要点。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/android-tv/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">

View File

@ -76,6 +76,40 @@
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/android-tv/">Android TV 折腾小记</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-08
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/android-tv/">#android-TV</a></span>
<div class="post-content">
<p>前言 由于AppleTV的高昂的售价和普通电视盒子广告的泛滥一台开源、多功能的原生安卓电视盒子逐渐成为智能家居的必备神器。出于对IPTV、YouTube和家庭影院等需求以及对一面赏心悦目电视墙的期待这里分享Android TV 以下简称ATV安装的一些要点。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.ink/android-tv/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.ink/openwrt/">OpenWrt 软路由部署</a></h1>
<div class="post-meta-inline">

View File

@ -113,6 +113,9 @@
<url>
<loc>https://blog.dich.ink/tags/android/</loc>
</url>
<url>
<loc>https://blog.dich.ink/tags/bios/</loc>
</url>
<url>
<loc>https://blog.dich.ink/tags/blog/</loc>
</url>
@ -128,6 +131,9 @@
<url>
<loc>https://blog.dich.ink/tags/debain/</loc>
</url>
<url>
<loc>https://blog.dich.ink/tags/grub/</loc>
</url>
<url>
<loc>https://blog.dich.ink/tags/keyboard/</loc>
</url>
@ -176,6 +182,9 @@
<url>
<loc>https://blog.dich.ink/tags/terminal/</loc>
</url>
<url>
<loc>https://blog.dich.ink/tags/uefi/</loc>
</url>
<url>
<loc>https://blog.dich.ink/tags/wifi/</loc>
</url>
@ -185,6 +194,10 @@
<url>
<loc>https://blog.dich.ink/tags/zola/</loc>
</url>
<url>
<loc>https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/</loc>
<lastmod>2024-03-15</lastmod>
</url>
<url>
<loc>https://blog.dich.ink/terminal-console-shell/</loc>
<lastmod>2024-03-12</lastmod>

127
public/tags/bios/index.html Normal file
View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Dich&#x27;blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5">
<meta name="robots" content="noodp"/>
<link rel="stylesheet" href="https://blog.dich.ink/style.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/blue.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/background_dark.css">
<link rel="stylesheet" href="https://blog.dich.ink/font-hack-subset.css">
<meta name="description" content="All posts tagged BIOS">
<meta property="og:description" content="All posts tagged BIOS">
<meta property="og:title" content="Dich'blog">
<meta property="og:type" content="website">
<meta property="og:url" content="https://blog.dich.ink/tags/bios/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="All posts tagged BIOS">
<meta name="twitter:title" content="Dich'blog">
<meta property="twitter:domain" content="blog.dich.ink">
<meta property="twitter:url" content="https://blog.dich.ink/tags/bios/">
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
</head>
<body class="">
<div class="container">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="https://blog.dich.ink" style="text-decoration: none;">
<div class="logo">
Dich&#x27;blog
</div>
</a>
</div>
</div>
<nav class="menu">
<ul class="menu__inner">
<li><a href="https://blog.dich.ink">blog</a></li>
<li class="active"><a href="https://blog.dich.ink/tags">tags</a></li>
<li><a href="https://blog.dich.ink/archive">archive</a></li>
<li><a href="https://blog.dich.ink/about">about me</a></li>
<li><a href="https://github.com/Dichgrem" target="_blank" rel="noopener noreferrer">github</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
tag: #BIOS
(1 post)
</h1>
<a href="https://blog.dich.ink/tags">
Show all tags
</a>
<ul><li class="post-list">
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<span class="post-date">2024-03-15</span>
:: <span class="post-list-title">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</span></a>
<span class="post-tags-inline">
::
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
</li>
</ul>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>©
2024
Dichgrem</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
</div>
</footer>
</div>
</body>
</html>

View File

@ -90,7 +90,7 @@ Dich&#x27;blog</title>
<ul><li class="post-list">
<a href="https://blog.dich.ink/zola-blog/">
<span class="post-date">2024-03-12</span>
:: <span class="post-list-title">个人博客搭建记</span></a>
:: <span class="post-list-title">Personal Blog</span></a>
<span class="post-tags-inline">
::

127
public/tags/grub/index.html Normal file
View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Dich&#x27;blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5">
<meta name="robots" content="noodp"/>
<link rel="stylesheet" href="https://blog.dich.ink/style.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/blue.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/background_dark.css">
<link rel="stylesheet" href="https://blog.dich.ink/font-hack-subset.css">
<meta name="description" content="All posts tagged GRUB">
<meta property="og:description" content="All posts tagged GRUB">
<meta property="og:title" content="Dich'blog">
<meta property="og:type" content="website">
<meta property="og:url" content="https://blog.dich.ink/tags/grub/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="All posts tagged GRUB">
<meta name="twitter:title" content="Dich'blog">
<meta property="twitter:domain" content="blog.dich.ink">
<meta property="twitter:url" content="https://blog.dich.ink/tags/grub/">
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
</head>
<body class="">
<div class="container">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="https://blog.dich.ink" style="text-decoration: none;">
<div class="logo">
Dich&#x27;blog
</div>
</a>
</div>
</div>
<nav class="menu">
<ul class="menu__inner">
<li><a href="https://blog.dich.ink">blog</a></li>
<li class="active"><a href="https://blog.dich.ink/tags">tags</a></li>
<li><a href="https://blog.dich.ink/archive">archive</a></li>
<li><a href="https://blog.dich.ink/about">about me</a></li>
<li><a href="https://github.com/Dichgrem" target="_blank" rel="noopener noreferrer">github</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
tag: #GRUB
(1 post)
</h1>
<a href="https://blog.dich.ink/tags">
Show all tags
</a>
<ul><li class="post-list">
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<span class="post-date">2024-03-15</span>
:: <span class="post-list-title">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</span></a>
<span class="post-tags-inline">
::
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
</li>
</ul>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>©
2024
Dichgrem</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
</div>
</footer>
</div>
</body>
</html>

View File

@ -104,6 +104,12 @@
</a>
</li>
<li class="tag-list">
<a href="https://blog.dich.ink/tags/bios/">
BIOS (1 post)
</a>
</li>
<li class="tag-list">
<a href="https://blog.dich.ink/tags/blog/">
Blog (1 post)
@ -134,6 +140,12 @@
</a>
</li>
<li class="tag-list">
<a href="https://blog.dich.ink/tags/grub/">
GRUB (1 post)
</a>
</li>
<li class="tag-list">
<a href="https://blog.dich.ink/tags/keyboard/">
keyboard (1 post)
@ -230,6 +242,12 @@
</a>
</li>
<li class="tag-list">
<a href="https://blog.dich.ink/tags/uefi/">
UEFI (1 post)
</a>
</li>
<li class="tag-list">
<a href="https://blog.dich.ink/tags/wifi/">
Wifi (1 post)

127
public/tags/uefi/index.html Normal file
View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Dich&#x27;blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5">
<meta name="robots" content="noodp"/>
<link rel="stylesheet" href="https://blog.dich.ink/style.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/blue.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/background_dark.css">
<link rel="stylesheet" href="https://blog.dich.ink/font-hack-subset.css">
<meta name="description" content="All posts tagged UEFI">
<meta property="og:description" content="All posts tagged UEFI">
<meta property="og:title" content="Dich'blog">
<meta property="og:type" content="website">
<meta property="og:url" content="https://blog.dich.ink/tags/uefi/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="All posts tagged UEFI">
<meta name="twitter:title" content="Dich'blog">
<meta property="twitter:domain" content="blog.dich.ink">
<meta property="twitter:url" content="https://blog.dich.ink/tags/uefi/">
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
</head>
<body class="">
<div class="container">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="https://blog.dich.ink" style="text-decoration: none;">
<div class="logo">
Dich&#x27;blog
</div>
</a>
</div>
</div>
<nav class="menu">
<ul class="menu__inner">
<li><a href="https://blog.dich.ink">blog</a></li>
<li class="active"><a href="https://blog.dich.ink/tags">tags</a></li>
<li><a href="https://blog.dich.ink/archive">archive</a></li>
<li><a href="https://blog.dich.ink/about">about me</a></li>
<li><a href="https://github.com/Dichgrem" target="_blank" rel="noopener noreferrer">github</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
tag: #UEFI
(1 post)
</h1>
<a href="https://blog.dich.ink/tags">
Show all tags
</a>
<ul><li class="post-list">
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<span class="post-date">2024-03-15</span>
:: <span class="post-list-title">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</span></a>
<span class="post-tags-inline">
::
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>,
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
</li>
</ul>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>©
2024
Dichgrem</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
</div>
</footer>
</div>
</body>
</html>

View File

@ -90,7 +90,7 @@ Dich&#x27;blog</title>
<ul><li class="post-list">
<a href="https://blog.dich.ink/zola-blog/">
<span class="post-date">2024-03-12</span>
:: <span class="post-list-title">个人博客搭建记</span></a>
:: <span class="post-list-title">Personal Blog</span></a>
<span class="post-tags-inline">
::

View File

@ -0,0 +1,213 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dich&#x27;blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5">
<meta name="robots" content="noodp"/>
<link rel="stylesheet" href="https://blog.dich.ink/style.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/blue.css">
<link rel="stylesheet" href="https://blog.dich.ink/color/background_dark.css">
<link rel="stylesheet" href="https://blog.dich.ink/font-hack-subset.css">
<meta name="description" content="">
<meta property="og:description" content="">
<meta property="og:title" content="Dich'blog">
<meta property="og:type" content="article">
<meta property="og:url" content="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="">
<meta name="twitter:title" content="Dich'blog">
<meta property="twitter:domain" content="blog.dich.ink">
<meta property="twitter:url" content="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
</head>
<body class="">
<div class="container">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="https://blog.dich.ink" style="text-decoration: none;">
<div class="logo">
Dich&#x27;blog
</div>
</a>
</div>
</div>
<nav class="menu">
<ul class="menu__inner">
<li class="active"><a href="https://blog.dich.ink">blog</a></li>
<li><a href="https://blog.dich.ink/tags">tags</a></li>
<li><a href="https://blog.dich.ink/archive">archive</a></li>
<li><a href="https://blog.dich.ink/about">about me</a></li>
<li><a href="https://github.com/Dichgrem" target="_blank" rel="noopener noreferrer">github</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title"><a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-15
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>&nbsp;
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
<div class="post-content">
<p>前言 在计算机领域系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFIMBR与GPT以及它们之间的异同点。此外我们还会讨论与这些概念密切相关的引导加载程序——GRUB。</p>
<span id="continue-reading"></span><h2 id="bios">BIOS</h2>
<blockquote>
<p>BIOSBasic Input Output System直译成中文名称就是&quot;<code>基本输入输出系统</code>&quot;。它是一组固化到主板中一个ROM芯片上的程序它可以从CMOS中读写系统设置的具体信息。此程序保存着计算机最重要的基本输入输出程序、开机后的自检程序和系统自启动程序。简单来说BIOS只认识设备不认识分区、不认识文件。</p>
</blockquote>
<h2 id="uefi">UEFI</h2>
<blockquote>
<p>UEFI统一可扩展固件接口是一个公开的规范定义了操作系统和平台固件之间的软件接口。UEFI 是传统 PC BIOS 的继承者是取代传统BIOS的相比传统BIOS来说它更易实现容错和纠错特性也更强。<br />
它将引导数据存储在 .efi 文件中,而不是固件中。你经常会在新款的主板中找到 UEFI 启动模式。UEFI 启动模式包含一个特殊的 EFI 分区,用于存储 .efi 文件并用于引导过程和引导加载程序。</p>
<p>UEFI使用GPT的分区引导方案支持更大的硬盘。由于省去了BIOS自检的过程所以启动速度更快。传统BIOS主要支持MBR引导UEFI则是取代传统BIOS它加入了对新硬件的支持其中就有支持2TB以上硬盘。</p>
</blockquote>
<h2 id="mbr">MBR</h2>
<blockquote>
<p>全新硬盘在使用之前必须进行分区格式化,硬盘分区初始化的格式主要有两种,分别为<code>MBR</code>格式和<code>GPT</code>格式。MBR是传统的分区表类型当一台电脑启动时它会先启动主板上的BIOS系统BIOS再从硬盘上读取MBR主引导记录硬盘上的MBR运行后就会启动操作系统但最大的缺点则是不支持容量大于2T的硬盘。</p>
</blockquote>
<h2 id="gpt">GPT</h2>
<blockquote>
<p>而GPT是另一种更先进的磁盘系统分区方式它的出现弥补了MBR这个缺点最大支持<code>18EB</code>的硬盘,是基于<code>UEFI</code>使用的磁盘分区架构。目前所有Windows系统均支持<code>MBR</code>,而<code>GPT</code>只有<code>64</code>位系统才能支持。<code>BIOS只支持MBR引导系统而GPT仅可用UEFI引导系统</code>。正因为这样现在主板大多采用BIOS集成UEFI或UEFI集成BIOS以此达到同时兼容MBR和GPT引导系统的目的。</p>
</blockquote>
<h2 id="grub">GRUB</h2>
<blockquote>
<p>GRUBGRand unified bootloader,多操作系统启动程序。它允许用户可以在计算机内同时拥有多个操作系统,并在计算机启动时选择希望运行的操作系统。</p>
<p>GRUB可用于选择操作系统分区上的不同内核也可用于向这些内核传递启动参数。<code>它是一个多重操作系统启动管理器,用来引导不同系统</code>如Windows、Linux。Linux常见的引导程序包括LILO、GRUB、GRUB2。</p>
</blockquote>
<h2 id="legacy">Legacy</h2>
<blockquote>
<p>如果你遇到过刚制作的U盘启动盘无法启动或者新买的固态硬盘做好系统后无法启动那么大概率的问题就出现在BIOS的引导模式的选择上是UEFI还是Legacy。legacy启动模式是指BIOS 固件用来初始化硬件设备的引导过程Legacy启动模式包含一系列已安装的设备这些设备在引导过程中计算机执行 POST (开机自检)测试时会被初始化。传统引导将检查所有连接设备的主引导记录 (MBR),通常位于磁盘的第一个扇区。<br />
当它在设备中找不到引导加载程序时Legacy会切换到列表中的下一个设备并不断重复此过程直到找到引导加载程序否则返回错误。</p>
</blockquote>
<table><thead><tr><th>BIOS</th><th>UEFI</th></tr></thead><tbody>
<tr><td>用于初始化计算机硬件并引导操作系统</td><td>在计算机启动时运行</td></tr>
<tr><td>具有较少功能和灵活性</td><td>具有更多功能和灵活性</td></tr>
<tr><td></td><td>支持更大的硬盘容量、更快的启动速度、更好的安全性和更多的扩展性v</td></tr>
<tr><td></td><td>通常具有图形用户界面GUI</td></tr>
</tbody></table>
<table><thead><tr><th>MBR</th><th>GPT</th></tr></thead><tbody>
<tr><td>用于分区磁盘并存储分区布局信息</td><td>用于分区磁盘并存储分区布局信息</td></tr>
<tr><td>支持最多4个主分区或3个主分区加1个扩展分区</td><td>支持最多4个主分区或3个主分区加1个扩展分区支持最多4个主分区或3个主分区加1个扩展分区</td></tr>
<tr><td></td><td>具有更好的数据完整性和可靠性,使用校验和检测数据损坏</td></tr>
<tr><td></td><td>UEFI需要GPT格式的磁盘才能引导</td></tr>
</tbody></table>
<table><thead><tr><th>GRUB</th></tr></thead><tbody>
<tr><td>用于在计算机系统启动时加载操作系统的引导加载程序与BIOS、UEFI、MBR、GPT都有关联</td></tr>
<tr><td>能够与BIOS或UEFI兼容可以在MBR或GPT格式的磁盘上运行</td></tr>
<tr><td>通常用于多引导系统,可以在多个操作系统之间进行选择,并提供了灵活的配置选项</td></tr>
</tbody></table>
<table><thead><tr><th>UEFI 引导模式</th><th>Legacy引导模式</th></tr></thead><tbody>
<tr><td>UEFI 提供了更好的用户界面</td><td>Legacy引导模式是传统的且非常基本的</td></tr>
<tr><td>使用 GPT 分区方案</td><td>使用 MBR 分区方案</td></tr>
<tr><td>UEFI 提供更快的启动时间</td><td>相比UEFI它的速度较慢</td></tr>
<tr><td>由于 UEFI 使用 GPT 分区方案,因此它可以支持多达 9 zB 的存储设备</td><td>Legacy使用的 MBR 分区方案仅支持最多 2 TB 存储设备</td></tr>
<tr><td>UEFI 以 32 位和 64 位运行,支持鼠标和触摸板</td><td>Legacy在仅支持键盘仅 16 位模式下运行</td></tr>
<tr><td>它允许安全启动防止加载未经授权的应用程序它还可能阻碍双启动因为它将操作系统OS视为应用程序</td><td>它不提供允许加载未经授权的应用程序的安全启动方法,未限制双启动</td></tr>
<tr><td>它具有更简单的更新过程</td><td>与UEFI相比它更复杂</td></tr>
</tbody></table>
<h2 id="zu-he">组合</h2>
<ul>
<li>
<p><strong>BIOS+MBR</strong></p>
<p>这是最传统的,系统都会支持;唯一的缺点就是<code>不支持容量大于2T的硬盘</code></p>
</li>
<li>
<p><strong>BIOS+GPT</strong></p>
<p>BIOS是可以使用GPT分区表的硬盘来作为数据盘的但不能引导系统若电脑同时带有容量小于2T的硬盘和容量大于2T的硬盘<code>小于2T的可以用MBR分区表安装系统而大于2T的可以使用GPT分区表来存放资料</code>。但系统须使用64位系统。</p>
</li>
<li>
<p><strong>UEFI+MBR</strong></p>
<p>可以把UEFI设置成<code>Legacy模式</code>传统模式让其支持传统MBR启动效果同<code>BIOS+MBR</code>也可以建立FAT分区放置UEFI启动文件来可应用在U盘和移动硬盘上实现双模式启动。</p>
</li>
<li>
<p><strong>UEFI+GPT</strong></p>
<p>如果要把大于2T的硬盘作为系统盘来安装系统的话就必须<code>UEFI+GPT</code>。而且系统须使用64位系统否则无法引导。但系统又不是传统在PE下安装后就能直接使用的引导还得经过处理才行。</p>
</li>
</ul>
</div>
<div class="pagination">
<div class="pagination__title">
<span class="pagination__title-h">Thanks for reading! Read other posts?</span>
<hr />
</div>
<div class="pagination__buttons">
<span class="button previous">
<a href="https://blog.dich.ink/terminal-console-shell/">
<span class="button__icon"></span>&nbsp;
<span class="button__text">TerminalConsole and Shell</span>
</a>
</span>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>©
2024
Dichgrem</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
</div>
</footer>
</div>
</body>
</html>

View File

@ -126,10 +126,17 @@
<span class="button previous">
<a href="https://blog.dich.ink/zola-blog/">
<span class="button__icon"></span>&nbsp;
<span class="button__text">个人博客搭建记</span>
<span class="button__text">Personal Blog</span>
</a>
</span>
<span class="button next">
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
<span class="button__text">Talkabout:BIOS-UEFI-MBR-GPT-GRUB</span>&nbsp;
<span class="button__icon"></span>
</a>
</span>
</div>
</div>

View File

@ -75,7 +75,7 @@
<div class="post">
<h1 class="post-title"><a href="https://blog.dich.ink/zola-blog/">个人博客搭建记</a></h1>
<h1 class="post-title"><a href="https://blog.dich.ink/zola-blog/">Personal Blog</a></h1>
<div class="post-meta-inline">
<span class="post-date">