mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-23 14:08:37 -05:00
Initial commit
This commit is contained in:
parent
fbf1eac823
commit
2cbae78458
117
content/linux-for-PC-3.md
Normal file
117
content/linux-for-PC-3.md
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
+++
|
||||||
|
title = "Linux-For-PC(二):内核/shell/包管理/文件系统"
|
||||||
|
date = 2023-07-22
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
tags = ["Tech","Linux"]
|
||||||
|
+++
|
||||||
|
|
||||||
|
前言 在Linux世界中,内核/shell/包管理/文件系统构成了Linux系统的核心,它们相互配合,共同构建了一个强大而稳定的操作环境。本文将深入探讨这些关键组成部分,解释它们的作用和原理,帮助读者更好地理解Linux系统的运作机制。
|
||||||
|
<!-- more -->
|
||||||
|
|
||||||
|
## **一.Linux内核**
|
||||||
|
|
||||||
|
有许多不同的版本,每个版本都包含了一系列的功能改进、bug修复和性能优化。在Linux发行版中,通常会使用某个特定版本的Linux内核,或者在需要时进行升级。以下是一些常见的Linux内核及其主要特点:
|
||||||
|
|
||||||
|
**Zen内核**:
|
||||||
|
- Zen内核是Linux内核的一个变体,旨在提供更好的性能和响应性。它通常包含了一些特定的调度程序和调优参数,以提高系统的负载均衡和响应速度。Zen内核也可能包含一些来自其他内核变体的功能和补丁,以进一步优化性能。
|
||||||
|
|
||||||
|
**LTS内核**:
|
||||||
|
- LTS(Long-Term Support)内核是一种长期支持的内核版本,它会获得更长时间的更新和维护。LTS内核通常会选择一些相对稳定和经过充分测试的功能,并对其进行长期支持,以确保系统的稳定性和安全性。
|
||||||
|
|
||||||
|
**Real-Time内核**:
|
||||||
|
- Real-Time内核是一种专门针对实时应用场景进行优化的内核变体。它通常包含了一些实时调度算法和机制,以确保系统能够及时响应各种事件,并满足实时性要求。Real-Time内核适用于一些对实时性要求较高的应用,如工业控制、机器人控制等领域。
|
||||||
|
|
||||||
|
**Hardened内核**:
|
||||||
|
- Hardened内核是一种针对安全性进行优化的内核变体。它通常包含了一些安全增强功能和补丁,以提高系统的安全性和抵御攻击的能力。Hardened内核适用于一些对安全性要求较高的应用,如服务器、云计算等场景。
|
||||||
|
|
||||||
|
**XanMod内核**:
|
||||||
|
- XanMod内核是一个基于Linux内核的自定义内核,旨在提供更好的响应性和性能。它包含了一些针对桌面和工作站系统优化的功能和补丁,如MuQSS调度器、BFQ I/O调度器等,以提高系统的响应速度和性能稳定性。XanMod内核还支持一些实时性应用,如音视频处理等,适用于对系统响应速度要求较高的用户。
|
||||||
|
|
||||||
|
**CachyOS内核**:
|
||||||
|
- CachyOS内核是一个专门针对缓存优化的Linux内核变体。它包含了一些针对缓存系统优化的功能和调整,以提高系统的缓存性能和数据访问速度。CachyOS内核通常适用于需要高性能缓存的应用场景,如数据库服务器、Web服务器等。
|
||||||
|
|
||||||
|
这些内核变体针对不同的需求和使用场景进行了优化,可以根据具体的应用需求来选择合适的内核版本。例如,如果您需要更好的性能和响应性,可以选择Zen内核;如果您需要长期支持和稳定性,可以选择LTS内核;如果您需要实时性能,可以选择Real-Time内核;如果您需要更高的安全性,可以选择Hardened内核。
|
||||||
|
|
||||||
|
## **二.Linux Shell**
|
||||||
|
|
||||||
|
在Linux系统中,有许多不同的Shell(命令行解释器),每种Shell都有自己的特点和用途。以下是一些常见的Linux Shell及其主要特点:
|
||||||
|
|
||||||
|
**Bash(Bourne Again Shell)**:
|
||||||
|
- Bash是Linux系统中最常用的Shell之一,也是默认的命令行解释器。它是Bourne Shell的增强版,提供了丰富的功能和扩展性,包括命令历史、命令补全、作业控制等。Bash具有良好的兼容性和易用性,适用于日常的系统管理和脚本编程。
|
||||||
|
|
||||||
|
**Zsh(Z Shell)**:
|
||||||
|
- Zsh是一种功能强大的Shell,提供了丰富的功能和扩展性,如更强大的命令补全、自动纠正拼写错误、主题和插件系统等。Zsh具有良好的可定制性和用户体验,适用于高级用户和程序员。
|
||||||
|
|
||||||
|
**Fish(Friendly Interactive Shell)**:
|
||||||
|
- Fish是一种用户友好的交互式Shell,提供了直观的命令提示和自动补全功能,以及丰富的语法高亮和命令提示信息。Fish具有良好的用户体验和易用性,适用于初学者和普通用户。
|
||||||
|
|
||||||
|
**Dash(Debian Almquist Shell)**:
|
||||||
|
- Dash是一种轻量级的Shell,专门设计用于系统启动过程和脚本执行。Dash具有较高的执行速度和较低的内存占用,适用于系统启动脚本和简单的脚本编程。
|
||||||
|
|
||||||
|
Bash是最常用的Shell之一,具有良好的兼容性和功能性;Zsh提供了更多的高级特性和定制选项,适用于高级用户和程序员;Fish具有友好的交互式体验和直观的用户界面,适用于初学者和普通用户;Dash则是一个轻量级的Shell,专门用于系统启动过程和简单的脚本编程。用户可以根据自己的需求和偏好选择合适的Shell。
|
||||||
|
|
||||||
|
|
||||||
|
## **三.Linux包管理器**
|
||||||
|
|
||||||
|
在Linux系统中,有几种常见的包管理器,它们各自管理着不同的发行版,具有不同的特点和用途。以下是一些常见的Linux包管理器及其主要特点:
|
||||||
|
|
||||||
|
**APT(Advanced Package Tool)**:
|
||||||
|
- APT是Debian系(如Debian、Ubuntu)中最常用的包管理器之一。它使用基于命令行的工具,如`apt-get`、`apt-cache`等来安装、升级和删除软件包。APT还支持依赖关系的自动解决,使得软件包的安装和管理变得更加方便。
|
||||||
|
|
||||||
|
**YUM(Yellowdog Updater, Modified)**:
|
||||||
|
- YUM是Red Hat系(如CentOS、Fedora)中常用的包管理器之一。它使用基于命令行的工具,如`yum`来管理软件包。YUM具有良好的依赖关系解决能力和事务处理功能,使得系统升级和软件包管理变得更加简单和可靠。
|
||||||
|
|
||||||
|
**DNF(Dandified YUM)**:
|
||||||
|
- DNF是YUM的下一代版本,逐渐取代了YUM在Fedora和RHEL系列中的地位。DNF具有更快的包查询和事务处理能力,以及更友好的用户界面。它是未来主流的包管理器之一。
|
||||||
|
|
||||||
|
**Pacman(Package Manager)**:
|
||||||
|
- Pacman是Arch Linux中常用的包管理器,也被一些其他发行版如Manjaro采用。Pacman使用简洁的命令,如`pacman -S`安装软件包、`pacman -Syu`更新系统等来管理软件包。Pacman具有简单、直观的界面和快速的操作速度,适用于对系统有一定了解的用户。
|
||||||
|
|
||||||
|
**zypper**:
|
||||||
|
- zypper是openSUSE中常用的包管理器,它使用基于命令行的工具,如`zypper install`、`zypper update`等来管理软件包。zypper具有良好的依赖关系解决能力和事务处理功能,使得系统升级和软件包管理变得更加简单和可靠。
|
||||||
|
|
||||||
|
**dpkg**:
|
||||||
|
- dpkg是Debian系(如Debian、Ubuntu)中的低级别软件包管理工具,用于直接管理软件包的安装、升级和删除。它提供了一系列的命令,如`dpkg -i`安装软件包、`dpkg -r`删除软件包等。
|
||||||
|
|
||||||
|
**RPM(RPM Package Manager)**:
|
||||||
|
- RPM是Red Hat系(如CentOS、Fedora)中的低级别软件包管理工具,用于直接管理软件包的安装、升级和删除。它提供了一系列的命令,如`rpm -i`安装软件包、`rpm -e`删除软件包等。
|
||||||
|
|
||||||
|
**Portage**:
|
||||||
|
- Portage是Gentoo Linux中的包管理器,它使用源代码进行软件包的安装和管理。Portage具有高度定制化和灵活性,允许用户根据需要自定义软件包的编译参数和依赖关系。
|
||||||
|
|
||||||
|
**Snap**:
|
||||||
|
- Snap是一种跨发行版的软件包格式和包管理器,允许用户在不同的Linux发行版上安装和管理软件包。Snap具有自包含性和隔离性,使得软件包的安装和升级变得更加简单和安全。
|
||||||
|
|
||||||
|
**Flatpak**:
|
||||||
|
- Flatpak是另一种跨发行版的软件包格式和包管理器,类似于Snap,允许用户在不同的Linux发行版上安装和管理软件包。Flatpak提供了一种统一的应用分发和运行环境,使得软件包的安装和升级更加简单和可靠。
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## **四.Linux文件系统**
|
||||||
|
|
||||||
|
Linux系统支持多种文件系统,每种文件系统都有自己的特点和优势,适用于不同的应用场景和需求。以下是一些常见的Linux文件系统及其主要特点:
|
||||||
|
|
||||||
|
**ext4**:
|
||||||
|
- ext4是Linux系统中最常用的文件系统之一,它是ext文件系统的后续版本,提供了更好的性能和扩展性。ext4支持更大的文件和分区大小,更快的文件系统检查和恢复速度,以及更高的性能和稳定性。
|
||||||
|
|
||||||
|
**Btrfs**:
|
||||||
|
- Btrfs是一种先进的文件系统,具有许多先进的功能和特性,如快照、数据校验、数据压缩等。Btrfs支持在线扩展和收缩分区大小,以及动态添加和删除磁盘,适用于需要高级特性和灵活性的应用场景。此外,Btrfs对快照功能支持较好。
|
||||||
|
|
||||||
|
> 快照功能是一种文件系统的特性,它允许用户在特定时间点对文件系统的状态进行快照或备份,并且可以在需要时一键恢复到该时间点的状态。
|
||||||
|
快照允许用户轻松地创建文件系统的历史版本,并在需要时回滚到特定的版本;快照允许用户在文件系统中进行实验和测试,并在测试失败或不需要时轻松地回滚到初始状态,以避免对系统造成影响。在升级或安装过程中出现问题时快速恢复到原始状态
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
**XFS**:
|
||||||
|
- XFS是一种高性能的日志文件系统,适用于大型文件和高吞吐量的应用场景。XFS支持大容量的文件和分区,具有较低的碎片化和较高的并发性能,适用于大规模存储和数据分析等应用。
|
||||||
|
|
||||||
|
**ZFS**:
|
||||||
|
- ZFS是一种先进的文件系统,具有强大的数据管理和保护功能,如快照、数据校验、数据压缩等。ZFS支持软件RAID和存储池(pool),以及动态添加和删除磁盘,适用于数据中心和大规模存储等应用场景。
|
||||||
|
|
||||||
|
**F2FS**:
|
||||||
|
- F2FS是一种针对闪存存储设备进行优化的文件系统,具有高性能和高可靠性。F2FS支持闪存特性如块擦除计数(block erase count)和块生命周期管理(block lifetime management),适用于固态硬盘(SSD)和闪存卡等闪存设备。
|
||||||
|
|
||||||
|
## **五.后记**
|
||||||
|
|
||||||
|
个人使用推荐Zen+Zsh+Pacman+Btrfs。
|
@ -1,6 +1,6 @@
|
|||||||
+++
|
+++
|
||||||
title = "Terminal,Console and Shell"
|
title = "Linux-For-PC(四):Terminal,Console and Shell"
|
||||||
date = 2024-03-12
|
date = 2023-07-23
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = ["Tech","linux"]
|
tags = ["Tech","linux"]
|
@ -1,6 +1,6 @@
|
|||||||
+++
|
+++
|
||||||
title = "BIOS-UEFI-MBR-GPT-GRUB"
|
title = "Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB"
|
||||||
date = 2024-03-15
|
date = 2023-07-24
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = ["Tech","GRUB","BIOS","UEFI"]
|
tags = ["Tech","GRUB","BIOS","UEFI"]
|
@ -200,30 +200,6 @@
|
|||||||
<a class="post-tag" href="https://blog.dich.ink/tags/git/">#Git</a>,
|
<a class="post-tag" href="https://blog.dich.ink/tags/git/">#Git</a>,
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
</li>
|
|
||||||
<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">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/tech/">#Tech</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">Terminal,Console and Shell</span></a>
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
::
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>,
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#linux</a></span>
|
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.ink/zola-blog/">
|
<a href="https://blog.dich.ink/zola-blog/">
|
||||||
@ -438,6 +414,41 @@
|
|||||||
<a class="post-tag" href="https://blog.dich.ink/tags/kgnl/">#KGNL</a>,
|
<a class="post-tag" href="https://blog.dich.ink/tags/kgnl/">#KGNL</a>,
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a></span>
|
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
|
<span class="post-date">2023-07-24</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(五):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/tech/">#Tech</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/linux-for-pc-4/">
|
||||||
|
<span class="post-date">2023-07-23</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(四):Terminal,Console and Shell</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>,
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#linux</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
|
<a href="https://blog.dich.ink/linux-for-pc-3/">
|
||||||
|
<span class="post-date">2023-07-22</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(二):内核/shell/包管理/文件系统</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#Linux</a>,
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
||||||
|
100
public/atom.xml
100
public/atom.xml
@ -226,46 +226,6 @@
|
|||||||
<summary type="html"><p>前言 Git,作为现代软件开发中不可或缺的版本控制工具,常常让初学者感到困惑。本文旨在介绍 Git 的全流程安装和基本使用,希望能够帮助新手更轻松地理解和掌握 Git 的基本概念和操作。</p>
|
<summary type="html"><p>前言 Git,作为现代软件开发中不可或缺的版本控制工具,常常让初学者感到困惑。本文旨在介绍 Git 的全流程安装和基本使用,希望能够帮助新手更轻松地理解和掌握 Git 的基本概念和操作。</p>
|
||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
</entry>
|
|
||||||
<entry xml:lang="en">
|
|
||||||
<title>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"><p>前言 在计算机领域,系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFI,MBR与GPT,以及它们之间的异同点。此外,我们还会讨论与这些概念密切相关的引导加载程序——GRUB。</p>
|
|
||||||
</summary>
|
|
||||||
|
|
||||||
</entry>
|
|
||||||
<entry xml:lang="en">
|
|
||||||
<title>Terminal,Console and Shell</title>
|
|
||||||
<published>2024-03-12T00:00:00+00:00</published>
|
|
||||||
<updated>2024-03-12T00:00:00+00:00</updated>
|
|
||||||
|
|
||||||
<author>
|
|
||||||
<name>
|
|
||||||
|
|
||||||
Unknown
|
|
||||||
|
|
||||||
</name>
|
|
||||||
</author>
|
|
||||||
|
|
||||||
<link rel="alternate" type="text/html" href="https://blog.dich.ink/terminal-console-shell/"/>
|
|
||||||
<id>https://blog.dich.ink/terminal-console-shell/</id>
|
|
||||||
|
|
||||||
<summary type="html"><p>前言 在linux的学习过程中,我们常常遇到诸如 Terminal,Console,bash,zsh,shell,tty 等概念,这些概念常常被混淆,似乎都和命令行相关。本文从历史角度出发介绍它们的前世今生。</p>
|
|
||||||
</summary>
|
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="en">
|
<entry xml:lang="en">
|
||||||
<title>Personal Blog</title>
|
<title>Personal Blog</title>
|
||||||
@ -704,6 +664,66 @@
|
|||||||
<summary type="html"><p>前言 快过年了系列笑话常常于过年期间在各大平台传播,反应了各技术人士的爱好与工作。本文收集了24个该系列的笑话,欢迎补充。</p>
|
<summary type="html"><p>前言 快过年了系列笑话常常于过年期间在各大平台传播,反应了各技术人士的爱好与工作。本文收集了24个该系列的笑话,欢迎补充。</p>
|
||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
|
</entry>
|
||||||
|
<entry xml:lang="en">
|
||||||
|
<title>Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</title>
|
||||||
|
<published>2023-07-24T00:00:00+00:00</published>
|
||||||
|
<updated>2023-07-24T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
<author>
|
||||||
|
<name>
|
||||||
|
|
||||||
|
Unknown
|
||||||
|
|
||||||
|
</name>
|
||||||
|
</author>
|
||||||
|
|
||||||
|
<link rel="alternate" type="text/html" href="https://blog.dich.ink/linux-for-pc-5/"/>
|
||||||
|
<id>https://blog.dich.ink/linux-for-pc-5/</id>
|
||||||
|
|
||||||
|
<summary type="html"><p>前言 在计算机领域,系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFI,MBR与GPT,以及它们之间的异同点。此外,我们还会讨论与这些概念密切相关的引导加载程序——GRUB。</p>
|
||||||
|
</summary>
|
||||||
|
|
||||||
|
</entry>
|
||||||
|
<entry xml:lang="en">
|
||||||
|
<title>Linux-For-PC(四):Terminal,Console and Shell</title>
|
||||||
|
<published>2023-07-23T00:00:00+00:00</published>
|
||||||
|
<updated>2023-07-23T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
<author>
|
||||||
|
<name>
|
||||||
|
|
||||||
|
Unknown
|
||||||
|
|
||||||
|
</name>
|
||||||
|
</author>
|
||||||
|
|
||||||
|
<link rel="alternate" type="text/html" href="https://blog.dich.ink/linux-for-pc-4/"/>
|
||||||
|
<id>https://blog.dich.ink/linux-for-pc-4/</id>
|
||||||
|
|
||||||
|
<summary type="html"><p>前言 在linux的学习过程中,我们常常遇到诸如 Terminal,Console,bash,zsh,shell,tty 等概念,这些概念常常被混淆,似乎都和命令行相关。本文从历史角度出发介绍它们的前世今生。</p>
|
||||||
|
</summary>
|
||||||
|
|
||||||
|
</entry>
|
||||||
|
<entry xml:lang="en">
|
||||||
|
<title>Linux-For-PC(二):内核/shell/包管理/文件系统</title>
|
||||||
|
<published>2023-07-22T00:00:00+00:00</published>
|
||||||
|
<updated>2023-07-22T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
<author>
|
||||||
|
<name>
|
||||||
|
|
||||||
|
Unknown
|
||||||
|
|
||||||
|
</name>
|
||||||
|
</author>
|
||||||
|
|
||||||
|
<link rel="alternate" type="text/html" href="https://blog.dich.ink/linux-for-pc-3/"/>
|
||||||
|
<id>https://blog.dich.ink/linux-for-pc-3/</id>
|
||||||
|
|
||||||
|
<summary type="html"><p>前言 在Linux世界中,内核/shell/包管理/文件系统构成了Linux系统的核心,它们相互配合,共同构建了一个强大而稳定的操作环境。本文将深入探讨这些关键组成部分,解释它们的作用和原理,帮助读者更好地理解Linux系统的运作机制。</p>
|
||||||
|
</summary>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="en">
|
<entry xml:lang="en">
|
||||||
<title>Linux-For-PC(二):FHS与目录结构</title>
|
<title>Linux-For-PC(二):FHS与目录结构</title>
|
||||||
|
@ -271,9 +271,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
<span class="button previous">
|
<span class="button previous">
|
||||||
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<a href="https://blog.dich.ink/zola-blog/">
|
||||||
<span class="button__icon">←</span>
|
<span class="button__icon">←</span>
|
||||||
<span class="button__text">BIOS-UEFI-MBR-GPT-GRUB</span>
|
<span class="button__text">Personal Blog</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
@ -131,9 +131,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
<span class="button previous">
|
<span class="button previous">
|
||||||
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
<span class="button__icon">←</span>
|
<span class="button__icon">←</span>
|
||||||
<span class="button__text">Linux-For-PC(二):FHS与目录结构</span>
|
<span class="button__text">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
@ -177,8 +177,8 @@ Swap的优先级:如果同时存在多个Swap分区/文件,可以通过设
|
|||||||
|
|
||||||
|
|
||||||
<span class="button next">
|
<span class="button next">
|
||||||
<a href="https://blog.dich.ink/kgnl/">
|
<a href="https://blog.dich.ink/linux-for-pc-3/">
|
||||||
<span class="button__text">快过年了笑话大全</span>
|
<span class="button__text">Linux-For-PC(二):内核/shell/包管理/文件系统</span>
|
||||||
<span class="button__icon">→</span>
|
<span class="button__icon">→</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
264
public/linux-for-pc-3/index.html
Normal file
264
public/linux-for-pc-3/index.html
Normal file
@ -0,0 +1,264 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>Dich'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/linux-for-pc-3/">
|
||||||
|
|
||||||
|
<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/linux-for-pc-3/">
|
||||||
|
|
||||||
|
|
||||||
|
<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'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://blog.dich.ink/links">links</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/linux-for-pc-3/">Linux-For-PC(二):内核/shell/包管理/文件系统</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-07-22
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#Linux</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 在Linux世界中,内核/shell/包管理/文件系统构成了Linux系统的核心,它们相互配合,共同构建了一个强大而稳定的操作环境。本文将深入探讨这些关键组成部分,解释它们的作用和原理,帮助读者更好地理解Linux系统的运作机制。</p>
|
||||||
|
<span id="continue-reading"></span><h2 id="yi-linuxnei-he"><strong>一.Linux内核</strong></h2>
|
||||||
|
<p>有许多不同的版本,每个版本都包含了一系列的功能改进、bug修复和性能优化。在Linux发行版中,通常会使用某个特定版本的Linux内核,或者在需要时进行升级。以下是一些常见的Linux内核及其主要特点:</p>
|
||||||
|
<p><strong>Zen内核</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Zen内核是Linux内核的一个变体,旨在提供更好的性能和响应性。它通常包含了一些特定的调度程序和调优参数,以提高系统的负载均衡和响应速度。Zen内核也可能包含一些来自其他内核变体的功能和补丁,以进一步优化性能。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>LTS内核</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>LTS(Long-Term Support)内核是一种长期支持的内核版本,它会获得更长时间的更新和维护。LTS内核通常会选择一些相对稳定和经过充分测试的功能,并对其进行长期支持,以确保系统的稳定性和安全性。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Real-Time内核</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Real-Time内核是一种专门针对实时应用场景进行优化的内核变体。它通常包含了一些实时调度算法和机制,以确保系统能够及时响应各种事件,并满足实时性要求。Real-Time内核适用于一些对实时性要求较高的应用,如工业控制、机器人控制等领域。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Hardened内核</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Hardened内核是一种针对安全性进行优化的内核变体。它通常包含了一些安全增强功能和补丁,以提高系统的安全性和抵御攻击的能力。Hardened内核适用于一些对安全性要求较高的应用,如服务器、云计算等场景。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>XanMod内核</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>XanMod内核是一个基于Linux内核的自定义内核,旨在提供更好的响应性和性能。它包含了一些针对桌面和工作站系统优化的功能和补丁,如MuQSS调度器、BFQ I/O调度器等,以提高系统的响应速度和性能稳定性。XanMod内核还支持一些实时性应用,如音视频处理等,适用于对系统响应速度要求较高的用户。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>CachyOS内核</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>CachyOS内核是一个专门针对缓存优化的Linux内核变体。它包含了一些针对缓存系统优化的功能和调整,以提高系统的缓存性能和数据访问速度。CachyOS内核通常适用于需要高性能缓存的应用场景,如数据库服务器、Web服务器等。</li>
|
||||||
|
</ul>
|
||||||
|
<p>这些内核变体针对不同的需求和使用场景进行了优化,可以根据具体的应用需求来选择合适的内核版本。例如,如果您需要更好的性能和响应性,可以选择Zen内核;如果您需要长期支持和稳定性,可以选择LTS内核;如果您需要实时性能,可以选择Real-Time内核;如果您需要更高的安全性,可以选择Hardened内核。</p>
|
||||||
|
<h2 id="er-linux-shell"><strong>二.Linux Shell</strong></h2>
|
||||||
|
<p>在Linux系统中,有许多不同的Shell(命令行解释器),每种Shell都有自己的特点和用途。以下是一些常见的Linux Shell及其主要特点:</p>
|
||||||
|
<p><strong>Bash(Bourne Again Shell)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Bash是Linux系统中最常用的Shell之一,也是默认的命令行解释器。它是Bourne Shell的增强版,提供了丰富的功能和扩展性,包括命令历史、命令补全、作业控制等。Bash具有良好的兼容性和易用性,适用于日常的系统管理和脚本编程。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Zsh(Z Shell)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Zsh是一种功能强大的Shell,提供了丰富的功能和扩展性,如更强大的命令补全、自动纠正拼写错误、主题和插件系统等。Zsh具有良好的可定制性和用户体验,适用于高级用户和程序员。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Fish(Friendly Interactive Shell)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Fish是一种用户友好的交互式Shell,提供了直观的命令提示和自动补全功能,以及丰富的语法高亮和命令提示信息。Fish具有良好的用户体验和易用性,适用于初学者和普通用户。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Dash(Debian Almquist Shell)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Dash是一种轻量级的Shell,专门设计用于系统启动过程和脚本执行。Dash具有较高的执行速度和较低的内存占用,适用于系统启动脚本和简单的脚本编程。</li>
|
||||||
|
</ul>
|
||||||
|
<p>Bash是最常用的Shell之一,具有良好的兼容性和功能性;Zsh提供了更多的高级特性和定制选项,适用于高级用户和程序员;Fish具有友好的交互式体验和直观的用户界面,适用于初学者和普通用户;Dash则是一个轻量级的Shell,专门用于系统启动过程和简单的脚本编程。用户可以根据自己的需求和偏好选择合适的Shell。</p>
|
||||||
|
<h2 id="san-linuxbao-guan-li-qi"><strong>三.Linux包管理器</strong></h2>
|
||||||
|
<p>在Linux系统中,有几种常见的包管理器,它们各自管理着不同的发行版,具有不同的特点和用途。以下是一些常见的Linux包管理器及其主要特点:</p>
|
||||||
|
<p><strong>APT(Advanced Package Tool)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>APT是Debian系(如Debian、Ubuntu)中最常用的包管理器之一。它使用基于命令行的工具,如<code>apt-get</code>、<code>apt-cache</code>等来安装、升级和删除软件包。APT还支持依赖关系的自动解决,使得软件包的安装和管理变得更加方便。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>YUM(Yellowdog Updater, Modified)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>YUM是Red Hat系(如CentOS、Fedora)中常用的包管理器之一。它使用基于命令行的工具,如<code>yum</code>来管理软件包。YUM具有良好的依赖关系解决能力和事务处理功能,使得系统升级和软件包管理变得更加简单和可靠。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>DNF(Dandified YUM)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>DNF是YUM的下一代版本,逐渐取代了YUM在Fedora和RHEL系列中的地位。DNF具有更快的包查询和事务处理能力,以及更友好的用户界面。它是未来主流的包管理器之一。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Pacman(Package Manager)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Pacman是Arch Linux中常用的包管理器,也被一些其他发行版如Manjaro采用。Pacman使用简洁的命令,如<code>pacman -S</code>安装软件包、<code>pacman -Syu</code>更新系统等来管理软件包。Pacman具有简单、直观的界面和快速的操作速度,适用于对系统有一定了解的用户。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>zypper</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>zypper是openSUSE中常用的包管理器,它使用基于命令行的工具,如<code>zypper install</code>、<code>zypper update</code>等来管理软件包。zypper具有良好的依赖关系解决能力和事务处理功能,使得系统升级和软件包管理变得更加简单和可靠。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>dpkg</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>dpkg是Debian系(如Debian、Ubuntu)中的低级别软件包管理工具,用于直接管理软件包的安装、升级和删除。它提供了一系列的命令,如<code>dpkg -i</code>安装软件包、<code>dpkg -r</code>删除软件包等。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>RPM(RPM Package Manager)</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>RPM是Red Hat系(如CentOS、Fedora)中的低级别软件包管理工具,用于直接管理软件包的安装、升级和删除。它提供了一系列的命令,如<code>rpm -i</code>安装软件包、<code>rpm -e</code>删除软件包等。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Portage</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Portage是Gentoo Linux中的包管理器,它使用源代码进行软件包的安装和管理。Portage具有高度定制化和灵活性,允许用户根据需要自定义软件包的编译参数和依赖关系。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Snap</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Snap是一种跨发行版的软件包格式和包管理器,允许用户在不同的Linux发行版上安装和管理软件包。Snap具有自包含性和隔离性,使得软件包的安装和升级变得更加简单和安全。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Flatpak</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Flatpak是另一种跨发行版的软件包格式和包管理器,类似于Snap,允许用户在不同的Linux发行版上安装和管理软件包。Flatpak提供了一种统一的应用分发和运行环境,使得软件包的安装和升级更加简单和可靠。</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="si-linuxwen-jian-xi-tong"><strong>四.Linux文件系统</strong></h2>
|
||||||
|
<p>Linux系统支持多种文件系统,每种文件系统都有自己的特点和优势,适用于不同的应用场景和需求。以下是一些常见的Linux文件系统及其主要特点:</p>
|
||||||
|
<p><strong>ext4</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>ext4是Linux系统中最常用的文件系统之一,它是ext文件系统的后续版本,提供了更好的性能和扩展性。ext4支持更大的文件和分区大小,更快的文件系统检查和恢复速度,以及更高的性能和稳定性。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Btrfs</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Btrfs是一种先进的文件系统,具有许多先进的功能和特性,如快照、数据校验、数据压缩等。Btrfs支持在线扩展和收缩分区大小,以及动态添加和删除磁盘,适用于需要高级特性和灵活性的应用场景。此外,Btrfs对快照功能支持较好。</li>
|
||||||
|
</ul>
|
||||||
|
<blockquote>
|
||||||
|
<p>快照功能是一种文件系统的特性,它允许用户在特定时间点对文件系统的状态进行快照或备份,并且可以在需要时一键恢复到该时间点的状态。
|
||||||
|
快照允许用户轻松地创建文件系统的历史版本,并在需要时回滚到特定的版本;快照允许用户在文件系统中进行实验和测试,并在测试失败或不需要时轻松地回滚到初始状态,以避免对系统造成影响。在升级或安装过程中出现问题时快速恢复到原始状态</p>
|
||||||
|
</blockquote>
|
||||||
|
<p><strong>XFS</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>XFS是一种高性能的日志文件系统,适用于大型文件和高吞吐量的应用场景。XFS支持大容量的文件和分区,具有较低的碎片化和较高的并发性能,适用于大规模存储和数据分析等应用。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>ZFS</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>ZFS是一种先进的文件系统,具有强大的数据管理和保护功能,如快照、数据校验、数据压缩等。ZFS支持软件RAID和存储池(pool),以及动态添加和删除磁盘,适用于数据中心和大规模存储等应用场景。</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>F2FS</strong>:</p>
|
||||||
|
<ul>
|
||||||
|
<li>F2FS是一种针对闪存存储设备进行优化的文件系统,具有高性能和高可靠性。F2FS支持闪存特性如块擦除计数(block erase count)和块生命周期管理(block lifetime management),适用于固态硬盘(SSD)和闪存卡等闪存设备。</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="wu-hou-ji"><strong>五.后记</strong></h2>
|
||||||
|
<p>个人使用推荐Zen+Zsh+Pacman+Btrfs。</p>
|
||||||
|
|
||||||
|
</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/linux-for-pc-2/">
|
||||||
|
<span class="button__icon">←</span>
|
||||||
|
<span class="button__text">Linux-For-PC(二):FHS与目录结构</span>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="button next">
|
||||||
|
<a href="https://blog.dich.ink/linux-for-pc-4/">
|
||||||
|
<span class="button__text">Linux-For-PC(四):Terminal,Console and Shell</span>
|
||||||
|
<span class="button__icon">→</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>
|
||||||
|
|
||||||
|
<script async defer src="http://173.249.208.93:12345/tracker.js" data-website-id="cluckwxwg0005qf4n55m737sz"></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -20,13 +20,13 @@
|
|||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:title" content="Dich'blog">
|
<meta property="og:title" content="Dich'blog">
|
||||||
<meta property="og:type" content="article">
|
<meta property="og:type" content="article">
|
||||||
<meta property="og:url" content="https://blog.dich.ink/terminal-console-shell/">
|
<meta property="og:url" content="https://blog.dich.ink/linux-for-pc-4/">
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:title" content="Dich'blog">
|
<meta name="twitter:title" content="Dich'blog">
|
||||||
<meta property="twitter:domain" content="blog.dich.ink">
|
<meta property="twitter:domain" content="blog.dich.ink">
|
||||||
<meta property="twitter:url" content="https://blog.dich.ink/terminal-console-shell/">
|
<meta property="twitter:url" content="https://blog.dich.ink/linux-for-pc-4/">
|
||||||
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
|
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
|
||||||
@ -77,11 +77,11 @@
|
|||||||
|
|
||||||
<div class="post">
|
<div class="post">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/terminal-console-shell/">Terminal,Console and Shell</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/linux-for-pc-4/">Linux-For-PC(四):Terminal,Console and Shell</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
2024-03-12
|
2023-07-23
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -125,16 +125,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
<span class="button previous">
|
<span class="button previous">
|
||||||
<a href="https://blog.dich.ink/zola-blog/">
|
<a href="https://blog.dich.ink/linux-for-pc-3/">
|
||||||
<span class="button__icon">←</span>
|
<span class="button__icon">←</span>
|
||||||
<span class="button__text">Personal Blog</span>
|
<span class="button__text">Linux-For-PC(二):内核/shell/包管理/文件系统</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
<span class="button next">
|
<span class="button next">
|
||||||
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
<span class="button__text">BIOS-UEFI-MBR-GPT-GRUB</span>
|
<span class="button__text">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</span>
|
||||||
<span class="button__icon">→</span>
|
<span class="button__icon">→</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
@ -20,13 +20,13 @@
|
|||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:title" content="Dich'blog">
|
<meta property="og:title" content="Dich'blog">
|
||||||
<meta property="og:type" content="article">
|
<meta property="og:type" content="article">
|
||||||
<meta property="og:url" content="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<meta property="og:url" content="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:title" content="Dich'blog">
|
<meta name="twitter:title" content="Dich'blog">
|
||||||
<meta property="twitter:domain" content="blog.dich.ink">
|
<meta property="twitter:domain" content="blog.dich.ink">
|
||||||
<meta property="twitter:url" content="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<meta property="twitter:url" content="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
|
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.dich.ink/atom.xml">
|
||||||
@ -77,11 +77,11 @@
|
|||||||
|
|
||||||
<div class="post">
|
<div class="post">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">BIOS-UEFI-MBR-GPT-GRUB</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/linux-for-pc-5/">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
2024-03-15
|
2023-07-24
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -184,16 +184,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
<span class="button previous">
|
<span class="button previous">
|
||||||
<a href="https://blog.dich.ink/terminal-console-shell/">
|
<a href="https://blog.dich.ink/linux-for-pc-4/">
|
||||||
<span class="button__icon">←</span>
|
<span class="button__icon">←</span>
|
||||||
<span class="button__text">Terminal,Console and Shell</span>
|
<span class="button__text">Linux-For-PC(四):Terminal,Console and Shell</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
<span class="button next">
|
<span class="button next">
|
||||||
<a href="https://blog.dich.ink/git/">
|
<a href="https://blog.dich.ink/kgnl/">
|
||||||
<span class="button__text">Git使用简明手册</span>
|
<span class="button__text">快过年了笑话大全</span>
|
||||||
<span class="button__icon">→</span>
|
<span class="button__icon">→</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
@ -109,78 +109,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">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:
|
|
||||||
<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/tech/">#Tech</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 在计算机领域,系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFI,MBR与GPT,以及它们之间的异同点。此外,我们还会讨论与这些概念密切相关的引导加载程序——GRUB。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- 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>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/terminal-console-shell/">Terminal,Console and Shell</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-03-12
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#linux</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 在linux的学习过程中,我们常常遇到诸如 Terminal,Console,bash,zsh,shell,tty 等概念,这些概念常常被混淆,似乎都和命令行相关。本文从历史角度出发介绍它们的前世今生。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.ink/terminal-console-shell/">
|
|
||||||
<span class="button__text">Read more</span>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="post on-list">
|
<div class="post on-list">
|
||||||
@ -253,6 +181,77 @@
|
|||||||
</div>
|
</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-03
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/licenses/">#licenses</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/open/">#open</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 本文旨在介绍开源软件许可证,这些许可证规定了使用、修改和分发开源软件的条件。通过了解不同类型的开源许可证及其特点,读者将能够更好地理解在开发和使用开源软件时的法律和道德责任。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- 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>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post on-list">
|
||||||
|
|
||||||
|
<h1 class="post-title"><a href="https://blog.dich.ink/open-source-cross-platform-softs/">开源世界:有关开源的误区</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-03-02
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/open-source/">#Open-Source</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 在当今的软件开发领域,开源软件已经成为推动技术创新和知识共享的重要力量。尽管开源软件的理念和实践已经深入人心,但围绕它的一些误解和误区依然存在。本文旨在深入探讨和澄清这些常见的开源误区,帮助读者更全面、更准确地理解开源软件的本质、价值和实践方式。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.ink/open-source-cross-platform-softs/">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
|
@ -78,77 +78,6 @@
|
|||||||
<div class="posts">
|
<div class="posts">
|
||||||
<div class="post on-list">
|
<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-03
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/licenses/">#licenses</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/open/">#open</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 本文旨在介绍开源软件许可证,这些许可证规定了使用、修改和分发开源软件的条件。通过了解不同类型的开源许可证及其特点,读者将能够更好地理解在开发和使用开源软件时的法律和道德责任。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- 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>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/open-source-cross-platform-softs/">开源世界:有关开源的误区</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-03-02
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/open-source/">#Open-Source</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 在当今的软件开发领域,开源软件已经成为推动技术创新和知识共享的重要力量。尽管开源软件的理念和实践已经深入人心,但围绕它的一些误解和误区依然存在。本文旨在深入探讨和澄清这些常见的开源误区,帮助读者更全面、更准确地理解开源软件的本质、价值和实践方式。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.ink/open-source-cross-platform-softs/">
|
|
||||||
<span class="button__text">Read more</span>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/open-source-what/">开源世界:什么是开源</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/open-source-what/">开源世界:什么是开源</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -301,6 +230,76 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post on-list">
|
||||||
|
|
||||||
|
<h1 class="post-title"><a href="https://blog.dich.ink/podcast-use/">搭建个人信息流:播客收听指北</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-01-20
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/podcast/">#Podcast</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 讲起播客,许多人第一反应是喜马拉雅,但其实播客的订阅和收听有许多种方式。本文带你了解订阅播客的各种方式,并告诉你市面上有哪些不错的播客客户端可供选择。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.ink/podcast-use/">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</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:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/rss/">#RSS</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 RSS 提供了一种数据格式,以 XML(可扩展标记语言)的形式组织信息,包括文章标题、摘要、链接和发布日期等。这些信息形成了所谓的“订阅源”(Feed),用户可以使用RSS阅读器(Feed Reader)来订阅这些源。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- 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>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
|
@ -78,76 +78,6 @@
|
|||||||
<div class="posts">
|
<div class="posts">
|
||||||
<div class="post on-list">
|
<div class="post on-list">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/podcast-use/">搭建个人信息流:播客收听指北</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-01-20
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/podcast/">#Podcast</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 讲起播客,许多人第一反应是喜马拉雅,但其实播客的订阅和收听有许多种方式。本文带你了解订阅播客的各种方式,并告诉你市面上有哪些不错的播客客户端可供选择。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.ink/podcast-use/">
|
|
||||||
<span class="button__text">Read more</span>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</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:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/rss/">#RSS</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 RSS 提供了一种数据格式,以 XML(可扩展标记语言)的形式组织信息,包括文章标题、摘要、链接和发布日期等。这些信息形成了所谓的“订阅源”(Feed),用户可以使用RSS阅读器(Feed Reader)来订阅这些源。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- 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>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/chatogpt/">如何高效地向 ChatGPT 提问</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/chatogpt/">如何高效地向 ChatGPT 提问</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -249,6 +179,76 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post on-list">
|
||||||
|
|
||||||
|
<h1 class="post-title"><a href="https://blog.dich.ink/how-email-works-2/">电子邮件是如何工作的:POP3/IMAP/SMTP</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-12-25
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/mail/">#Mail</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 POP3、IMAP 和 SMTP 是用于电子邮件传输的常见协议和服务,这些协议共同构成了电子邮件系统的基础,允许用户接收、发送和管理电子邮件。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.ink/how-email-works-2/">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post on-list">
|
||||||
|
|
||||||
|
<h1 class="post-title"><a href="https://blog.dich.ink/how-email-works-1/">电子邮件是如何工作的:SPF/DKIM/DMARC</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-12-24
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/mail/">#Mail</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 在互联网的日常使用中,电子邮件作为一项基础服务扮演着重要的角色。尽管在过去几十年里出现了各种新型的通讯方式,但电子邮件仍然保持着其不可替代的地位。了解电子邮件的工作原理,有助于更好地理解这一基础服务是如何运作的。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.ink/how-email-works-1/">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
|
@ -78,76 +78,6 @@
|
|||||||
<div class="posts">
|
<div class="posts">
|
||||||
<div class="post on-list">
|
<div class="post on-list">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/how-email-works-2/">电子邮件是如何工作的:POP3/IMAP/SMTP</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2023-12-25
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/mail/">#Mail</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 POP3、IMAP 和 SMTP 是用于电子邮件传输的常见协议和服务,这些协议共同构成了电子邮件系统的基础,允许用户接收、发送和管理电子邮件。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.ink/how-email-works-2/">
|
|
||||||
<span class="button__text">Read more</span>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/how-email-works-1/">电子邮件是如何工作的:SPF/DKIM/DMARC</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2023-12-24
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/mail/">#Mail</a>
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 在互联网的日常使用中,电子邮件作为一项基础服务扮演着重要的角色。尽管在过去几十年里出现了各种新型的通讯方式,但电子邮件仍然保持着其不可替代的地位。了解电子邮件的工作原理,有助于更好地理解这一基础服务是如何运作的。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.ink/how-email-works-1/">
|
|
||||||
<span class="button__text">Read more</span>
|
|
||||||
<span class="button__icon">↩︎</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/mechrev-keyboard/">机械革命键盘失灵拯救记</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/mechrev-keyboard/">机械革命键盘失灵拯救记</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -249,6 +179,76 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post on-list">
|
||||||
|
|
||||||
|
<h1 class="post-title"><a href="https://blog.dich.ink/calling-cards/">流量卡购买与套路</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-08-24
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/calling-cards/">#Calling-cards</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 由于临近升学,校园网不尽人意,因此许多小伙伴有了买一张流量卡的计划。本文以三大运营商为例,说明常见流量卡的套路与选择。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.ink/calling-cards/">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</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:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/kgnl/">#KGNL</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 快过年了系列笑话常常于过年期间在各大平台传播,反应了各技术人士的爱好与工作。本文收集了24个该系列的笑话,欢迎补充。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- 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>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<div class="pagination__buttons">
|
<div class="pagination__buttons">
|
||||||
|
@ -78,11 +78,11 @@
|
|||||||
<div class="posts">
|
<div class="posts">
|
||||||
<div class="post on-list">
|
<div class="post on-list">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/calling-cards/">流量卡购买与套路</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/linux-for-pc-5/">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
2023-08-24
|
2023-07-24
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -90,19 +90,21 @@
|
|||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
:: tags:
|
:: tags:
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/calling-cards/">#Calling-cards</a>
|
<a class="post-tag" href="https://blog.dich.ink/tags/bios/">#BIOS</a>
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a></span>
|
<a class="post-tag" href="https://blog.dich.ink/tags/grub/">#GRUB</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/uefi/">#UEFI</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
<div class="post-content">
|
||||||
<p>前言 由于临近升学,校园网不尽人意,因此许多小伙伴有了买一张流量卡的计划。本文以三大运营商为例,说明常见流量卡的套路与选择。</p>
|
<p>前言 在计算机领域,系统引导和磁盘分区是至关重要的。本文将介绍BIOS与UEFI,MBR与GPT,以及它们之间的异同点。此外,我们还会讨论与这些概念密切相关的引导加载程序——GRUB。</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
<a class="read-more button" href="https://blog.dich.ink/calling-cards/">
|
<a class="read-more button" href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
<span class="button__text">Read more</span>
|
<span class="button__text">Read more</span>
|
||||||
<span class="button__icon">↩︎</span>
|
<span class="button__icon">↩︎</span>
|
||||||
</a>
|
</a>
|
||||||
@ -113,11 +115,11 @@
|
|||||||
|
|
||||||
<div class="post on-list">
|
<div class="post on-list">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.ink/kgnl/">快过年了笑话大全</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.ink/linux-for-pc-4/">Linux-For-PC(四):Terminal,Console and Shell</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
2023-08-23
|
2023-07-23
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -125,19 +127,54 @@
|
|||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
:: tags:
|
:: tags:
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/kgnl/">#KGNL</a>
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/life/">#Life</a></span>
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#linux</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
<div class="post-content">
|
||||||
<p>前言 快过年了系列笑话常常于过年期间在各大平台传播,反应了各技术人士的爱好与工作。本文收集了24个该系列的笑话,欢迎补充。</p>
|
<p>前言 在linux的学习过程中,我们常常遇到诸如 Terminal,Console,bash,zsh,shell,tty 等概念,这些概念常常被混淆,似乎都和命令行相关。本文从历史角度出发介绍它们的前世今生。</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
<a class="read-more button" href="https://blog.dich.ink/kgnl/">
|
<a class="read-more button" href="https://blog.dich.ink/linux-for-pc-4/">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post on-list">
|
||||||
|
|
||||||
|
<h1 class="post-title"><a href="https://blog.dich.ink/linux-for-pc-3/">Linux-For-PC(二):内核/shell/包管理/文件系统</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-07-22
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#Linux</a>
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 在Linux世界中,内核/shell/包管理/文件系统构成了Linux系统的核心,它们相互配合,共同构建了一个强大而稳定的操作环境。本文将深入探讨这些关键组成部分,解释它们的作用和原理,帮助读者更好地理解Linux系统的运作机制。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.ink/linux-for-pc-3/">
|
||||||
<span class="button__text">Read more</span>
|
<span class="button__text">Read more</span>
|
||||||
<span class="button__icon">↩︎</span>
|
<span class="button__icon">↩︎</span>
|
||||||
</a>
|
</a>
|
||||||
|
@ -114,6 +114,18 @@
|
|||||||
<loc>https://blog.dich.ink/linux-for-pc-2/</loc>
|
<loc>https://blog.dich.ink/linux-for-pc-2/</loc>
|
||||||
<lastmod>2023-07-21</lastmod>
|
<lastmod>2023-07-21</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://blog.dich.ink/linux-for-pc-3/</loc>
|
||||||
|
<lastmod>2023-07-22</lastmod>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://blog.dich.ink/linux-for-pc-4/</loc>
|
||||||
|
<lastmod>2023-07-23</lastmod>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://blog.dich.ink/linux-for-pc-5/</loc>
|
||||||
|
<lastmod>2023-07-24</lastmod>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://blog.dich.ink/local-isps-to-cn-report/</loc>
|
<loc>https://blog.dich.ink/local-isps-to-cn-report/</loc>
|
||||||
<lastmod>2024-02-10</lastmod>
|
<lastmod>2024-02-10</lastmod>
|
||||||
@ -264,14 +276,6 @@
|
|||||||
<url>
|
<url>
|
||||||
<loc>https://blog.dich.ink/tags/zola/</loc>
|
<loc>https://blog.dich.ink/tags/zola/</loc>
|
||||||
</url>
|
</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>
|
|
||||||
</url>
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://blog.dich.ink/windows-secondary-menu-recovery-and-settings-boot-startup/</loc>
|
<loc>https://blog.dich.ink/windows-secondary-menu-recovery-and-settings-boot-startup/</loc>
|
||||||
<lastmod>2023-08-26</lastmod>
|
<lastmod>2023-08-26</lastmod>
|
||||||
|
@ -90,9 +90,9 @@ Dich'blog</title>
|
|||||||
|
|
||||||
|
|
||||||
<ul><li class="post-list">
|
<ul><li class="post-list">
|
||||||
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
<span class="post-date">2024-03-15</span>
|
<span class="post-date">2023-07-24</span>
|
||||||
:: <span class="post-list-title">BIOS-UEFI-MBR-GPT-GRUB</span></a>
|
:: <span class="post-list-title">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</span></a>
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
::
|
::
|
||||||
|
@ -90,9 +90,9 @@ Dich'blog</title>
|
|||||||
|
|
||||||
|
|
||||||
<ul><li class="post-list">
|
<ul><li class="post-list">
|
||||||
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
<span class="post-date">2024-03-15</span>
|
<span class="post-date">2023-07-24</span>
|
||||||
:: <span class="post-list-title">BIOS-UEFI-MBR-GPT-GRUB</span></a>
|
:: <span class="post-list-title">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</span></a>
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
::
|
::
|
||||||
|
@ -156,7 +156,7 @@
|
|||||||
|
|
||||||
<li class="tag-list">
|
<li class="tag-list">
|
||||||
<a href="https://blog.dich.ink/tags/linux/">
|
<a href="https://blog.dich.ink/tags/linux/">
|
||||||
Linux (3 posts)
|
Linux (4 posts)
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
@ -228,7 +228,7 @@
|
|||||||
|
|
||||||
<li class="tag-list">
|
<li class="tag-list">
|
||||||
<a href="https://blog.dich.ink/tags/tech/">
|
<a href="https://blog.dich.ink/tags/tech/">
|
||||||
Tech (29 posts)
|
Tech (30 posts)
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ Dich'blog</title>
|
|||||||
<div class="post">
|
<div class="post">
|
||||||
<h1 class="post-title">
|
<h1 class="post-title">
|
||||||
tag: #Linux
|
tag: #Linux
|
||||||
(3 posts)
|
(4 posts)
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<a href="https://blog.dich.ink/tags">
|
<a href="https://blog.dich.ink/tags">
|
||||||
@ -90,6 +90,17 @@ Dich'blog</title>
|
|||||||
|
|
||||||
|
|
||||||
<ul><li class="post-list">
|
<ul><li class="post-list">
|
||||||
|
<a href="https://blog.dich.ink/linux-for-pc-3/">
|
||||||
|
<span class="post-date">2023-07-22</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(二):内核/shell/包管理/文件系统</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#Linux</a>,
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
||||||
<span class="post-date">2023-07-21</span>
|
<span class="post-date">2023-07-21</span>
|
||||||
:: <span class="post-list-title">Linux-For-PC(二):FHS与目录结构</span></a>
|
:: <span class="post-list-title">Linux-For-PC(二):FHS与目录结构</span></a>
|
||||||
@ -112,9 +123,9 @@ Dich'blog</title>
|
|||||||
|
|
||||||
</li>
|
</li>
|
||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.ink/terminal-console-shell/">
|
<a href="https://blog.dich.ink/linux-for-pc-4/">
|
||||||
<span class="post-date">2024-03-12</span>
|
<span class="post-date">2023-07-23</span>
|
||||||
:: <span class="post-list-title">Terminal,Console and Shell</span></a>
|
:: <span class="post-list-title">Linux-For-PC(四):Terminal,Console and Shell</span></a>
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
::
|
::
|
||||||
|
@ -81,7 +81,7 @@ Dich'blog</title>
|
|||||||
<div class="post">
|
<div class="post">
|
||||||
<h1 class="post-title">
|
<h1 class="post-title">
|
||||||
tag: #Tech
|
tag: #Tech
|
||||||
(29 posts)
|
(30 posts)
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<a href="https://blog.dich.ink/tags">
|
<a href="https://blog.dich.ink/tags">
|
||||||
@ -209,30 +209,6 @@ Dich'blog</title>
|
|||||||
<a class="post-tag" href="https://blog.dich.ink/tags/git/">#Git</a>,
|
<a class="post-tag" href="https://blog.dich.ink/tags/git/">#Git</a>,
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
</li>
|
|
||||||
<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">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/tech/">#Tech</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">Terminal,Console and Shell</span></a>
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
::
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>,
|
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#linux</a></span>
|
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.ink/zola-blog/">
|
<a href="https://blog.dich.ink/zola-blog/">
|
||||||
@ -392,6 +368,41 @@ Dich'blog</title>
|
|||||||
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>,
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>,
|
||||||
<a class="post-tag" href="https://blog.dich.ink/tags/windows/">#Windows</a></span>
|
<a class="post-tag" href="https://blog.dich.ink/tags/windows/">#Windows</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
|
<span class="post-date">2023-07-24</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(五):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/tech/">#Tech</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/linux-for-pc-4/">
|
||||||
|
<span class="post-date">2023-07-23</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(四):Terminal,Console and Shell</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a>,
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#linux</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
|
<a href="https://blog.dich.ink/linux-for-pc-3/">
|
||||||
|
<span class="post-date">2023-07-22</span>
|
||||||
|
:: <span class="post-list-title">Linux-For-PC(二):内核/shell/包管理/文件系统</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/linux/">#Linux</a>,
|
||||||
|
<a class="post-tag" href="https://blog.dich.ink/tags/tech/">#Tech</a></span>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
<a href="https://blog.dich.ink/linux-for-pc-2/">
|
||||||
|
@ -90,9 +90,9 @@ Dich'blog</title>
|
|||||||
|
|
||||||
|
|
||||||
<ul><li class="post-list">
|
<ul><li class="post-list">
|
||||||
<a href="https://blog.dich.ink/talk-bios-uefi-mbr-gpt-grub/">
|
<a href="https://blog.dich.ink/linux-for-pc-5/">
|
||||||
<span class="post-date">2024-03-15</span>
|
<span class="post-date">2023-07-24</span>
|
||||||
:: <span class="post-list-title">BIOS-UEFI-MBR-GPT-GRUB</span></a>
|
:: <span class="post-list-title">Linux-For-PC(五):BIOS-UEFI-MBR-GPT-GRUB</span></a>
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
::
|
::
|
||||||
|
@ -145,8 +145,8 @@
|
|||||||
|
|
||||||
|
|
||||||
<span class="button next">
|
<span class="button next">
|
||||||
<a href="https://blog.dich.ink/terminal-console-shell/">
|
<a href="https://blog.dich.ink/git/">
|
||||||
<span class="button__text">Terminal,Console and Shell</span>
|
<span class="button__text">Git使用简明手册</span>
|
||||||
<span class="button__icon">→</span>
|
<span class="button__icon">→</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user