diff --git a/config.toml b/config.toml index c52639f..4b1503e 100644 --- a/config.toml +++ b/config.toml @@ -238,8 +238,8 @@ uglyURLs = false identifier = "mathematics" [[menu.main]] - pageref = "/408/" - name = "408" + pageref = "/ComputerBasics/" + name = "基础" weight = 4 pre = "internal" post = "cubes" diff --git a/content/408/《操作系统》IO管理.md b/content/ComputerBasics/《操作系统》IO管理.md similarity index 98% rename from content/408/《操作系统》IO管理.md rename to content/ComputerBasics/《操作系统》IO管理.md index cce4de8..f8f935b 100644 --- a/content/408/《操作系统》IO管理.md +++ b/content/ComputerBasics/《操作系统》IO管理.md @@ -113,7 +113,7 @@ date: 2023-07-05T14:13:34+08:00 * 根据CPU的命令对相应设备发送命令 * 用于实现设备控制功能 * 组成图 - * ![](../../images/408/《操作系统》IO管理/设备控制器组成图.png) + * ![](https://lychee.inksoul.top/uploads/original/f4/a7/7005ad61d01aee024c9ac6cee0e9.webp) ### 设备控制器的三种寄存器(可被CPU直接访问的寄存器,也叫IO端口) @@ -173,7 +173,7 @@ date: 2023-07-05T14:13:34+08:00 * 每个DMA控制器对应一台设备与内存传递数据 * DMA方式主要用于块设备,磁盘尤其是典型的块设备 * 示例图 - * ![](../../images/408/《操作系统》IO管理/DMA工作原理.png) + * ![](https://lychee.inksoul.top/uploads/original/42/f1/1b4442cc3ae2b01bb4dcf72b9cd9.webp) ### 通道控制方式 @@ -189,7 +189,7 @@ date: 2023-07-05T14:13:34+08:00 * 通常包含许多非分配型字通道,数量可以达到几十到几百个,每个通道连接一台IO设备,并控制该设备的IO操作 * 常用于连接大量低速或中速IO设备 * 示例图 - * ![](../../images/408/《操作系统》IO管理/通道控制方式流程图.png) + * ![](https://lychee.inksoul.top/uploads/original/c4/31/e5d7aa4fb139aa68c3cf5fcdf62a.webp) ### 四种方式比较 @@ -247,7 +247,7 @@ date: 2023-07-05T14:13:34+08:00 ### 设备分配依据的数据结构 * 设备、控制器、通道间的关系 - * ![](../../images/408/《操作系统》IO管理/设备控制器组成图.png) + * ![](https://lychee.inksoul.top/uploads/original/f4/a7/7005ad61d01aee024c9ac6cee0e9.webp) * 设备控制表(DCT) * 系统为每个设备配置一张DCT * 用于记录设备情况 diff --git a/content/408/《操作系统》内存管理.md b/content/ComputerBasics/《操作系统》内存管理.md similarity index 100% rename from content/408/《操作系统》内存管理.md rename to content/ComputerBasics/《操作系统》内存管理.md diff --git a/content/408/《操作系统》大题总结.md b/content/ComputerBasics/《操作系统》大题总结.md similarity index 100% rename from content/408/《操作系统》大题总结.md rename to content/ComputerBasics/《操作系统》大题总结.md diff --git a/content/408/《操作系统》文件管理.md b/content/ComputerBasics/《操作系统》文件管理.md similarity index 100% rename from content/408/《操作系统》文件管理.md rename to content/ComputerBasics/《操作系统》文件管理.md diff --git a/content/408/《操作系统》计算机系统概述.md b/content/ComputerBasics/《操作系统》计算机系统概述.md similarity index 100% rename from content/408/《操作系统》计算机系统概述.md rename to content/ComputerBasics/《操作系统》计算机系统概述.md diff --git a/content/408/《操作系统》进程与线程.md b/content/ComputerBasics/《操作系统》进程与线程.md similarity index 100% rename from content/408/《操作系统》进程与线程.md rename to content/ComputerBasics/《操作系统》进程与线程.md diff --git a/content/408/《数据结构》串.md b/content/ComputerBasics/《数据结构》串.md similarity index 100% rename from content/408/《数据结构》串.md rename to content/ComputerBasics/《数据结构》串.md diff --git a/content/408/《数据结构》图.md b/content/ComputerBasics/《数据结构》图.md similarity index 100% rename from content/408/《数据结构》图.md rename to content/ComputerBasics/《数据结构》图.md diff --git a/content/408/《数据结构》大题.md b/content/ComputerBasics/《数据结构》大题.md similarity index 100% rename from content/408/《数据结构》大题.md rename to content/ComputerBasics/《数据结构》大题.md diff --git a/content/408/《数据结构》排序.md b/content/ComputerBasics/《数据结构》排序.md similarity index 100% rename from content/408/《数据结构》排序.md rename to content/ComputerBasics/《数据结构》排序.md diff --git a/content/408/《数据结构》查找.md b/content/ComputerBasics/《数据结构》查找.md similarity index 100% rename from content/408/《数据结构》查找.md rename to content/ComputerBasics/《数据结构》查找.md diff --git a/content/408/《数据结构》栈、队列和数组.md b/content/ComputerBasics/《数据结构》栈、队列和数组.md similarity index 100% rename from content/408/《数据结构》栈、队列和数组.md rename to content/ComputerBasics/《数据结构》栈、队列和数组.md diff --git a/content/408/《数据结构》树与二叉树.md b/content/ComputerBasics/《数据结构》树与二叉树.md similarity index 100% rename from content/408/《数据结构》树与二叉树.md rename to content/ComputerBasics/《数据结构》树与二叉树.md diff --git a/content/408/《数据结构》线性表.md b/content/ComputerBasics/《数据结构》线性表.md similarity index 100% rename from content/408/《数据结构》线性表.md rename to content/ComputerBasics/《数据结构》线性表.md diff --git a/content/408/《数据结构》绪论.md b/content/ComputerBasics/《数据结构》绪论.md similarity index 100% rename from content/408/《数据结构》绪论.md rename to content/ComputerBasics/《数据结构》绪论.md diff --git a/content/408/《计组》中央处理器.md b/content/ComputerBasics/《计组》中央处理器.md similarity index 100% rename from content/408/《计组》中央处理器.md rename to content/ComputerBasics/《计组》中央处理器.md diff --git a/content/408/《计组》大题.md b/content/ComputerBasics/《计组》大题.md similarity index 100% rename from content/408/《计组》大题.md rename to content/ComputerBasics/《计组》大题.md diff --git a/content/408/《计组》存储系统.md b/content/ComputerBasics/《计组》存储系统.md similarity index 100% rename from content/408/《计组》存储系统.md rename to content/ComputerBasics/《计组》存储系统.md diff --git a/content/408/《计组》总线.md b/content/ComputerBasics/《计组》总线.md similarity index 100% rename from content/408/《计组》总线.md rename to content/ComputerBasics/《计组》总线.md diff --git a/content/408/《计组》指令系统.md b/content/ComputerBasics/《计组》指令系统.md similarity index 100% rename from content/408/《计组》指令系统.md rename to content/ComputerBasics/《计组》指令系统.md diff --git a/content/408/《计组》数据的表示和运算.md b/content/ComputerBasics/《计组》数据的表示和运算.md similarity index 100% rename from content/408/《计组》数据的表示和运算.md rename to content/ComputerBasics/《计组》数据的表示和运算.md diff --git a/content/408/《计组》计算机系统概述.md b/content/ComputerBasics/《计组》计算机系统概述.md similarity index 100% rename from content/408/《计组》计算机系统概述.md rename to content/ComputerBasics/《计组》计算机系统概述.md diff --git a/content/408/《计组》输入输出系统.md b/content/ComputerBasics/《计组》输入输出系统.md similarity index 100% rename from content/408/《计组》输入输出系统.md rename to content/ComputerBasics/《计组》输入输出系统.md diff --git a/content/408/《计网》传输层.md b/content/ComputerBasics/《计网》传输层.md similarity index 100% rename from content/408/《计网》传输层.md rename to content/ComputerBasics/《计网》传输层.md diff --git a/content/408/《计网》大题.md b/content/ComputerBasics/《计网》大题.md similarity index 100% rename from content/408/《计网》大题.md rename to content/ComputerBasics/《计网》大题.md diff --git a/content/408/《计网》应用层.md b/content/ComputerBasics/《计网》应用层.md similarity index 100% rename from content/408/《计网》应用层.md rename to content/ComputerBasics/《计网》应用层.md diff --git a/content/408/《计网》数据链路层.md b/content/ComputerBasics/《计网》数据链路层.md similarity index 100% rename from content/408/《计网》数据链路层.md rename to content/ComputerBasics/《计网》数据链路层.md diff --git a/content/408/《计网》物理层.md b/content/ComputerBasics/《计网》物理层.md similarity index 100% rename from content/408/《计网》物理层.md rename to content/ComputerBasics/《计网》物理层.md diff --git a/content/408/《计网》网络层.md b/content/ComputerBasics/《计网》网络层.md similarity index 100% rename from content/408/《计网》网络层.md rename to content/ComputerBasics/《计网》网络层.md diff --git a/content/408/《计网》计算机网络体系结构.md b/content/ComputerBasics/《计网》计算机网络体系结构.md similarity index 100% rename from content/408/《计网》计算机网络体系结构.md rename to content/ComputerBasics/《计网》计算机网络体系结构.md diff --git a/content/computergraphic/《崩坏:星穹铁道卡渲还原》基于blender材质(锐意制作中).md b/content/computergraphic/《崩坏:星穹铁道卡渲还原》基于blender材质(锐意制作中).md index 9b93c6b..8cbe495 100644 --- a/content/computergraphic/《崩坏:星穹铁道卡渲还原》基于blender材质(锐意制作中).md +++ b/content/computergraphic/《崩坏:星穹铁道卡渲还原》基于blender材质(锐意制作中).md @@ -27,4 +27,4 @@ date: 2023-09-12T21:08:00+08:00 -![Alt text](<../../images/计算机图形学/小预告(specular color).png>) \ No newline at end of file +![](https://lychee.inksoul.top/uploads/original/8e/d3/15a833562f9cf43235ecb239d046.webp) \ No newline at end of file diff --git a/static/images/408/《操作系统》IO管理/设备控制器组成图.png b/static/images/408/《操作系统》IO管理/设备控制器组成图.png deleted file mode 100644 index 4737817..0000000 Binary files a/static/images/408/《操作系统》IO管理/设备控制器组成图.png and /dev/null differ diff --git a/static/images/计算机图形学/小预告AO.webp b/static/images/计算机图形学/小预告AO.webp deleted file mode 100644 index 5bdd171..0000000 Binary files a/static/images/计算机图形学/小预告AO.webp and /dev/null differ diff --git a/static/images/计算机图形学/小预告(specular color).png b/static/images/计算机图形学/小预告(specular color).png deleted file mode 100644 index 773cb15..0000000 Binary files a/static/images/计算机图形学/小预告(specular color).png and /dev/null differ