diff --git a/content/ComputerBasics/《操作系统》IO管理.md b/content/ComputerBasics/《操作系统》IO管理.md index f8f935b..3f5152f 100644 --- a/content/ComputerBasics/《操作系统》IO管理.md +++ b/content/ComputerBasics/《操作系统》IO管理.md @@ -113,7 +113,7 @@ date: 2023-07-05T14:13:34+08:00 * 根据CPU的命令对相应设备发送命令 * 用于实现设备控制功能 * 组成图 - * ![](https://lychee.inksoul.top/uploads/original/f4/a7/7005ad61d01aee024c9ac6cee0e9.webp) + * ![](https://lychee.inksoul.top/uploads/original/27/43/c11160ee9f28865c3eb334988c91.webp) ### 设备控制器的三种寄存器(可被CPU直接访问的寄存器,也叫IO端口) @@ -173,7 +173,7 @@ date: 2023-07-05T14:13:34+08:00 * 每个DMA控制器对应一台设备与内存传递数据 * DMA方式主要用于块设备,磁盘尤其是典型的块设备 * 示例图 - * ![](https://lychee.inksoul.top/uploads/original/42/f1/1b4442cc3ae2b01bb4dcf72b9cd9.webp) + * ![](https://lychee.inksoul.top/uploads/original/6c/03/f773b60ca05a2cb8f7cc60d3a6bb.webp) ### 通道控制方式 @@ -189,7 +189,7 @@ date: 2023-07-05T14:13:34+08:00 * 通常包含许多非分配型字通道,数量可以达到几十到几百个,每个通道连接一台IO设备,并控制该设备的IO操作 * 常用于连接大量低速或中速IO设备 * 示例图 - * ![](https://lychee.inksoul.top/uploads/original/c4/31/e5d7aa4fb139aa68c3cf5fcdf62a.webp) + * ![](https://lychee.inksoul.top/uploads/original/f7/43/029203b2d6e455c455a730974d31.webp) ### 四种方式比较 @@ -247,22 +247,22 @@ date: 2023-07-05T14:13:34+08:00 ### 设备分配依据的数据结构 * 设备、控制器、通道间的关系 - * ![](https://lychee.inksoul.top/uploads/original/f4/a7/7005ad61d01aee024c9ac6cee0e9.webp) + * ![](https://lychee.inksoul.top/uploads/original/27/43/c11160ee9f28865c3eb334988c91.webp) * 设备控制表(DCT) * 系统为每个设备配置一张DCT * 用于记录设备情况 - * ![](../../images/408/《操作系统》IO管理/设备控制表.png) + * ![](https://lychee.inksoul.top/uploads/original/c3/02/3e2798fcb153d946531079d9dd92.webp) * 控制器控制表(COCT) * 每个设备控制器都会对应一张COCT * 操作系统会根据COCT的信息对控制器进行操作管理 - * ![](../../images/408/《操作系统》IO管理/控制器控制表.png) + * ![](https://lychee.inksoul.top/uploads/original/75/30/dd8508704dcc8f3d67c22b7cfc83.webp) * 通道控制表(CHCT) * 每个通道都会对应一张CHCT * 操作系统会根据CHCT的信息对通道进行操作管理 - * ![](../../images/408/《操作系统》IO管理/通道控制表.png) + * ![](https://lychee.inksoul.top/uploads/original/64/d5/c56c3ce0f0fb18858734b1e9596d.webp) * 系统设备表(SDT) * 记录了系统中全部设备的情况,每个设备对应一个表目 - * ![](../../images/408/《操作系统》IO管理/系统设备表.png) + * ![](https://lychee.inksoul.top/uploads/original/34/80/f230f2640fac89147128cbe3bc4b.webp) ### 逻辑设备名到物理设备名的映射 @@ -311,25 +311,25 @@ date: 2023-07-05T14:13:34+08:00 * 单缓冲 * 流程 * Max(C,T) + M - * ![](../../images/408/《操作系统》IO管理/单缓冲流程图.png) + * ![](https://lychee.inksoul.top/uploads/original/bc/de/74644bf29707fbb46c62f8c5e82b.webp) * T > C 时,处理一块数据需要(T + M) - * ![](../../images/408/《操作系统》IO管理/单缓冲T大于C.png) + * ![](https://lychee.inksoul.top/uploads/original/f8/79/2182afa85837c7f60e7dfadc1894.webp) * T < C 时,处理一块数据需要(C + M) - * ![](../../images/408/《操作系统》IO管理/单缓冲T小于C.png) + * ![](https://lychee.inksoul.top/uploads/original/70/cc/47c780ffa35684cf6ffbe1080e4d.webp) * 双缓冲 * 流程 * Max(T,C + M) - * ![](../../images/408/《操作系统》IO管理/双缓冲流程图.png) + * ![](https://lychee.inksoul.top/uploads/original/c9/41/39106528cd38fad66670ebda09cf.webp) * T > C + M 时,平均处理一个数据块需要时间T - * ![](../../images/408/《操作系统》IO管理/双缓冲T大于C+M.png) + * ![](https://lychee.inksoul.top/uploads/original/c0/4c/5bdb95aa0b00aae9c57fe353c572.webp) * T < C + M 时,平均处理一个数据块需要时间(C + M) - * ![](../../images/408/《操作系统》IO管理/双缓冲T小于C+M.png) + * ![](https://lychee.inksoul.top/uploads/original/ac/23/066dfc2a705e7824e63e315a41fc.webp) * 循环缓冲 * 将多个大小相等的缓冲区连接成一个循环队列 * 下图中橙色表示已充满数据的缓冲区,绿色表示空缓冲区 * 当需要向缓冲区中充入数据时,只要找到in指针指向的空缓冲区,向其中充入数据,然后再把in指针指向下一个空缓冲区 * 当需要取出满缓冲区的内容时,找到out指针执行的满缓冲区,读取完数据后,将指针指向下一个满缓冲区 - * ![](../../images/408/《操作系统》IO管理/循环缓冲流程图.png) + * ![](https://lychee.inksoul.top/uploads/original/61/b0/8081e7d506e41a75d67a80aff71c.webp) * 缓冲池 * 缓冲池由系统中共用的存放在主存中的缓冲区组成,被认为是最好的方法 * 缓冲区根据使用情况分为 @@ -341,7 +341,7 @@ date: 2023-07-05T14:13:34+08:00 * 用于提取输入数据的工作缓冲区(sin) * 用于收容输出数据的工作缓冲区(hout) * 用于提取输出数据的工作缓冲区(sout) - * ![](../../images/408/《操作系统》IO管理/缓冲池流程图.png) + * ![](https://lychee.inksoul.top/uploads/original/64/fb/95ef428992c16ee7fe1ff3866a70.webp) ## SPOOLing技术(假脱机技术) @@ -371,7 +371,7 @@ date: 2023-07-05T14:13:34+08:00 * 输入缓冲区用于暂存从输入设备输入的数据,之后再转存到输入井中 * 输出缓冲区用于暂存从输出井传送的数据,之后再传送到输出设备上 * 流程图 - * ![](../../images/408/《操作系统》IO管理/SPOOLing系统的运行过程.png) + * ![](https://lychee.inksoul.top/uploads/original/e2/cb/d011a4a724c9256aba7b5cab0220.webp) ### SPOOLing系统的优特点 @@ -397,7 +397,7 @@ date: 2023-07-05T14:13:34+08:00 ### 基本概念和结构 -![](../../images/408/《操作系统》IO管理/磁盘结构示例图.jpg) +![](https://lychee.inksoul.top/uploads/medium/f6/02/3a8e76155755af00c49f8b9c5cd1.webp) * 基本结构 * 磁盘 @@ -509,7 +509,7 @@ date: 2023-07-05T14:13:34+08:00 * 处理顺序 * 98,183,37,122,14,124,65,67 * 寻道示例图 - * ![](../../images/408/《操作系统》IO管理/磁盘调度-先来先服务.png) + * ![](https://lychee.inksoul.top/uploads/original/5b/43/b8be7813907cd2bfcd508fa398db.webp) * 最短寻找时间优先(SSTF) * 思想 * 优先选择从当前磁头位置所需寻道时间最短的请求 @@ -522,7 +522,7 @@ date: 2023-07-05T14:13:34+08:00 * 处理顺序 * 65,67,37,14,98,122,124,183 * 寻道示例图 - * ![](../../images/408/《操作系统》IO管理/磁盘调度-最短寻道时间优先.png) + * ![](https://lychee.inksoul.top/uploads/original/55/57/064d927f543dea7f214575ce0956.webp) * 扫描/电梯算法(SCAN) * 思想 * 磁头在一个方向上移动,访问所有未完成的请求,直到磁头到达该方向上的最后的磁道,才调换方向 @@ -536,7 +536,7 @@ date: 2023-07-05T14:13:34+08:00 * 磁头先响应左边的请求,到达最左端后才开始反向移动,响应右边的请求 * 37,14,0,65,67,98,122,124,183 * 寻道示例图 - * ![](../../images/408/《操作系统》IO管理/磁盘调度-扫描算法.png) + * ![](https://lychee.inksoul.top/uploads/original/39/66/ac470363b7d89d3f03927225982c.webp) * C-SCAN算法 * 思想 * 只有磁头朝某个特定方向移动时,才处理磁道访问请求 @@ -553,7 +553,7 @@ date: 2023-07-05T14:13:34+08:00 * 直到到达最开始的磁道后,才继续顺序响应右边的请求 * 65,67,98,122,124,183,199,0,14,37 * 寻道示例图 - * ![](../../images/408/《操作系统》IO管理/磁盘调度-C-SCAN算法.png) + * ![](https://lychee.inksoul.top/uploads/original/66/f6/29c00355469ea4dec47daba8690b.webp) diff --git a/content/ComputerBasics/《操作系统》内存管理.md b/content/ComputerBasics/《操作系统》内存管理.md index f7a5bf7..a2e71fb 100644 --- a/content/ComputerBasics/《操作系统》内存管理.md +++ b/content/ComputerBasics/《操作系统》内存管理.md @@ -45,7 +45,7 @@ date: 2023-07-03T20:39:49+08:00 过程图 -![](../../images/408/《操作系统》内存管理/程序链接与接入过程图.jpg) +![](https://lychee.inksoul.top/uploads/original/54/11/97d9b0ea12b94ea78ab84ec026b1.webp) * 编译 * 由编译程序将用户源代码编译程若干目标模块 @@ -62,7 +62,7 @@ date: 2023-07-03T20:39:49+08:00 * 可重定位装入:装入时把逻辑地址转换为物理地址,但装入后不能改变 * 动态重定位装入:执行时再决定装入的地址并装入,装入后有可能会换出 -![](../../images/408/《操作系统》内存管理/重装入类别例图.jpg) +![](https://lychee.inksoul.top/uploads/medium/1c/ce/b6e9dba57d889e30e534c2f9cf9e.webp) ### 逻辑地址与物理地址 @@ -91,7 +91,7 @@ date: 2023-07-03T20:39:49+08:00 * 堆:用来存放动态分配的变量【动态的】 * 栈:用来实现函数调用的【动态的】 -![](../../images/408/《操作系统》内存管理/内存映像的例图.jpg) +![](https://lychee.inksoul.top/uploads/medium/2e/7e/d2ba153083a733e9be4aa30b8847.webp) ### 内存保护 @@ -105,7 +105,7 @@ date: 2023-07-03T20:39:49+08:00 * 界地址寄存器含逻辑机制的最大值【用于比】 * 逻辑地址+重定位寄存器的值 = 物理地址 -![](../../images/408/《操作系统》内存管理/重定位寄存器和界地址寄存器的硬件支持.jpg) +![](https://lychee.inksoul.top/uploads/original/05/49/4869cf02db361330c3f124413dd1.webp) ### 内存共享 @@ -274,11 +274,11 @@ date: 2023-07-03T20:39:49+08:00 利用段表实现物理内存区映射 -![](../../images/408/《操作系统》内存管理/利用段表实现物理内存区映射.jpg) +![](https://lychee.inksoul.top/uploads/original/d0/d3/e53f784dc6b2866f6c0a8be89a1c.webp) 分段系统的地址变换过程 -![](../../images/408/《操作系统》内存管理/分段系统的地址变换过程.jpg) +![](https://lychee.inksoul.top/uploads/medium/83/ae/3e11e38fa42704c70ebd98f6af02.webp) ### 分页 @@ -333,7 +333,7 @@ date: 2023-07-03T20:39:49+08:00 * 分页产生的页表过大,使用多级页表来解决空间上的问题 -![](../../images/408/《操作系统》内存管理/基本地址变换结构图.png) +![](https://lychee.inksoul.top/uploads/original/38/24/d666c6b3db887d6c214536372a3f.webp) * 两级页表地址变换 * 一级页表覆盖到全部虚拟地址空间,二级页表在需要时创建 @@ -341,7 +341,7 @@ date: 2023-07-03T20:39:49+08:00 * 页表寄存器存放的是一级页表起始物理地址 * 多层参与,时间上开销大,加入TLB,提高地址的转换速度 -![](../../images/408/《操作系统》内存管理/两级页表地址变化结构图.png) +![](https://lychee.inksoul.top/uploads/medium/df/5d/96551021cbb78e0532d3825aff1d.webp) * 具有快表的地址变换 * 快表是相联存储器(TLB) @@ -351,7 +351,7 @@ date: 2023-07-03T20:39:49+08:00 * CPU芯片中,封装了MMU(内存管理单元) * MMU用来完成地址转换和TBL的访问与交互 -![](../../images/408/《操作系统》内存管理/具有快表的地址变换结构图.png) +![](https://lychee.inksoul.top/uploads/original/21/80/bb05899161040a2fefd4155a35a6.webp) ### 段页 @@ -364,9 +364,9 @@ date: 2023-07-03T20:39:49+08:00 * 对内存的管理以存储块为单位,地址空间是二维的 * 演示图例 -![](../../images/408/《操作系统》内存管理/段页式系统的地址变换机构图.jpg) +![](https://lychee.inksoul.top/uploads/original/fb/79/93a67e5e95084988d59345778f2b.webp) -![](../../images/408/《操作系统》内存管理/段页式系统的逻辑地址结构图.jpg) +![](https://lychee.inksoul.top/uploads/medium/f0/fa/cdb041b48c9c5e17ca7964595fc1.webp) * 得到物理地址的3次内存访问 @@ -470,7 +470,7 @@ date: 2023-07-03T20:39:49+08:00 * 从内存中换出一页 * 地址变换过程 -![](../../images/408/《操作系统》内存管理/地址变换过程演示图.jpg) +![](https://lychee.inksoul.top/uploads/medium/4e/b9/cb1740726f181da5c99283319096.webp) ### 页框分配(进程准备执行时,由OS决定给特定进程分配几个页框) @@ -591,5 +591,5 @@ date: 2023-07-03T20:39:49+08:00 使用页表的地址翻译 -![](../../images/408/《操作系统》内存管理/使用页表的地址翻译流程图.png) +![](https://lychee.inksoul.top/uploads/medium/9b/e1/745706d0a61322386e63ae8b3e62.webp) diff --git a/content/ComputerBasics/《操作系统》大题总结.md b/content/ComputerBasics/《操作系统》大题总结.md index fa2c073..c391fef 100644 --- a/content/ComputerBasics/《操作系统》大题总结.md +++ b/content/ComputerBasics/《操作系统》大题总结.md @@ -22,7 +22,8 @@ date: 2023-07-06T11:24:18+08:00 ---- -![](../../images/408/《操作系统》大题总结/生产者消费者问题一.png) +![](https://lychee.inksoul.top/uploads/original/ab/ec/6ab00f9e1ca414581c4cea758dd4.webp) + ``` C Semaphore mutex1 = 1 //互斥访问F1 @@ -75,7 +76,7 @@ F_C(){ ``` -![](../../images/408/《操作系统》大题总结/生产者消费者问题三.png) +![](https://lychee.inksoul.top/uploads/original/6a/7a/7be0bf2eb19ccfb5cd3b2f7d4b18.webp) ```C @@ -156,7 +157,7 @@ while(1){ ``` -![](../../images/408/《操作系统》大题总结/理发师问题一.png) +![](https://lychee.inksoul.top/uploads/original/3d/72/d1067d172a895094998eff135ee0.webp) ```C Semaphore empty = 10;//空座位的数目 @@ -236,7 +237,7 @@ process(){ ``` -![](../../images/408/《操作系统》大题总结/哲学家问题一.png) +![](https://lychee.inksoul.top/uploads/original/db/e1/ed22be998422081aae2e57ca1d0d.webp) 通常解 @@ -352,7 +353,7 @@ solo(){ ``` -![](../../images/408/《操作系统》大题总结/读者写者问题一.png) +![](https://lychee.inksoul.top/uploads/original/a6/d4/74e8e2b6e6fc6f4a922b4666debc.webp) (1) ```C @@ -407,7 +408,7 @@ NtoS(){//北到南 } ``` -![](../../images/408/《操作系统》大题总结/读者写者问题二.png) +![](https://lychee.inksoul.top/uploads/original/75/8a/fa213f171a2a7285840dedd68768.webp) ```C Semaphore room = 1; @@ -497,21 +498,21 @@ P3(){ * 一级页表+虚拟内存+TLB * 二级页表+虚拟内存+TLB -![](../../images/408/《操作系统》大题总结/内存管理知识体系.jpg) +![](https://lychee.inksoul.top/uploads/medium/c7/b6/3d42bb2a3eb23a3f623b5625b072.webp) TLB+二级页表+Cache(全相联映射) -![](../../images/408/《操作系统》大题总结/TLB全相联映射.jpg) +![](https://lychee.inksoul.top/uploads/medium2x/62/62/afdde2594f9c51f47eb670eb3954.webp) TLB+二级页表+Cache(2路组相联映射) -![](../../images/408/《操作系统》大题总结/TLB2路组相联映射.jpg) +![](https://lychee.inksoul.top/uploads/medium2x/61/61/67c696778a1bcb6345fd983486e2.webp) TLB + 二级页表 + Cache(直接映射) -![](../../images/408/《操作系统》大题总结/TLB直接映射.jpg) +![](https://lychee.inksoul.top/uploads/medium2x/f4/b4/ff5fea0be661df57e0729b223676.webp) --- -![](../../images/408/《操作系统》大题总结/内存管理真题一.png) +![](https://lychee.inksoul.top/uploads/original/e9/22/9df2db6e4946fccab35619260a03.webp) (1)
@@ -539,7 +540,7 @@ TLB + 二级页表 + Cache(直接映射)
代码2起始物理地址 = 00901000H -![](../../images/408/《操作系统》大题总结/内存管理真题二.png) +![](https://lychee.inksoul.top/uploads/original/e9/22/9df2db6e4946fccab35619260a03.webp) 页的大小 = 4KB = $2^{12}$B,页面位移比虚拟地址低12位 @@ -570,7 +571,7 @@ TLB + 二级页表 + Cache(直接映射) 物理地址 = 101565H -![](../../images/408/《操作系统》大题总结/内存管理真题三.png) +![](https://lychee.inksoul.top/uploads/original/22/38/c4c268827942286cdd5a8e80356e.webp) (1) @@ -594,7 +595,7 @@ TLB + 二级页表 + Cache(直接映射) 物理地址为 0000 1011 1100 1010 = 0BCAH -![](../../images/408/《操作系统》大题总结/内存管理真题四.png) +![](https://lychee.inksoul.top/uploads/original/e5/55/98c0c031454ed358a64dd7fe1a8d.webp) (1) @@ -617,7 +618,7 @@ TLB + 二级页表 + Cache(直接映射) 适合,程序的时间局部性越好,从空闲页框链表中重新取回的机会越大,该策略优势越明显 -![](../../images/408/《操作系统》大题总结/内存管理真题五.png) +![](https://lychee.inksoul.top/uploads/original/aa/89/6febeebd56da7e5b3e3bee31ca09.webp) (1) @@ -644,7 +645,7 @@ TLB + 二级页表 + Cache(直接映射) 访问的是同一个二级页表,即供访问一个二级页表 -![](../../images/408/《操作系统》大题总结/内存管理真题六.png) +![](https://lychee.inksoul.top/uploads/original/cb/d8/ca81273904bee3769a1123fca589.webp) (1) @@ -668,7 +669,7 @@ TLB + 二级页表 + Cache(直接映射) 修改位$\rightarrow$修改字段 -![](../../images/408/《操作系统》大题总结/内存管理真题七.png) +![](https://lychee.inksoul.top/uploads/original/ae/5e/22026fc03008e1b0638eedef21cd.webp) (1) @@ -706,16 +707,16 @@ a[1][2]的虚拟地址为 10801000H + 4 $\times$ 2 = 10801008H 显式链表分配法(FAT文件系统,即DOS) -![](../../images/408/《操作系统》大题总结/FAT文件系统示意图.png) +![](https://lychee.inksoul.top/uploads/medium2x/dd/d0/e4a8e02445c47d55158e49119375.webp) 混合索引法(Unix文件系统) -![](../../images/408/《操作系统》大题总结/UFS文件系统示意图.png) +![](https://lychee.inksoul.top/uploads/medium2x/b6/df/eb222d51132aa6a759e64aab4239.webp) ### 考题 -![](../../images/408/《操作系统》大题总结/文件管理真题一.png) +![](https://lychee.inksoul.top/uploads/original/69/7e/ec3dd430b748a6df97713adae363.webp) (1) @@ -729,7 +730,7 @@ FCB集中存放,文件数据集中存放 这样在随机查找文件名时,只需访问FCB对应的块,可减少磁头移动和磁盘IO访问次数 -![](../../images/408/《操作系统》大题总结/文件管理真题二.png) +![](https://lychee.inksoul.top/uploads/original/e1/6c/b74b2eee0e6075aa78ecab6e550a.webp) (1) @@ -753,7 +754,7 @@ FCB集中存放,文件数据集中存放 块数可表示$2^{32}$个块,共4TB -![](../../images/408/《操作系统》大题总结/文件管理真题三.png) +![](https://lychee.inksoul.top/uploads/original/34/47/928c9f9dce3b68f1a51e263ad5c5.webp) (1) @@ -794,7 +795,7 @@ FAT最大长度 = $2^{16} \times 2B = 128KB$ 即访问48号簇,106号簇 -![](../../images/408/《操作系统》大题总结/文件管理真题四.png) +![](https://lychee.inksoul.top/uploads/original/3a/b0/c094beafcdec6b3351bdbb8d9e5d.webp) (1) @@ -820,7 +821,7 @@ F的文件控制区的起始块号和文件长度内容会发生改变 文件长度为$1020B \times 4G = 4080GB$ -![](../../images/408/《操作系统》大题总结/文件管理真题五.png) +![](https://lychee.inksoul.top/uploads/original/1d/f8/0c2436c145b300cf1f31d7927296.webp) (1) @@ -860,7 +861,7 @@ $F_2$采用一级索引$\rightarrow$ 还需读一级索引表 ### 大题 -![](../../images/408/《操作系统》大题总结/磁盘管理真题一.png) +![](https://lychee.inksoul.top/uploads/original/12/9a/317bd0a10b1d1615ede07d640e90.webp) (1) @@ -893,7 +894,7 @@ Flash半导体存储器不需要考虑寻道时间和旋转延迟 可直接按IO请求的先后顺序服务 -![](../../images/408/《操作系统》大题总结/磁盘管理真题二.png) +![](https://lychee.inksoul.top/uploads/original/01/69/aa1c7ae2651f40889cfd3026c1ca.webp) (1) @@ -922,7 +923,7 @@ $30 \times 2 = 60$ 将簇号转换成磁盘物理地址的过程由磁盘驱动程序完成 -![](../../images/408/《操作系统》大题总结/磁盘管理真题三.png) +![](https://lychee.inksoul.top/uploads/original/4a/da/e177d677686800a6d4340a53b1b0.webp) (1) diff --git a/content/ComputerBasics/《操作系统》文件管理.md b/content/ComputerBasics/《操作系统》文件管理.md index 46ef346..5392e76 100644 --- a/content/ComputerBasics/《操作系统》文件管理.md +++ b/content/ComputerBasics/《操作系统》文件管理.md @@ -85,7 +85,7 @@ date: 2023-07-04T16:56:55+08:00 * 新增内容:索引节点编号;状态;访问计数;逻辑设备号;链接指针 -![](../../images/408/《操作系统》文件管理/书目录和计算机目录对比举例.jpg) +![](https://lychee.inksoul.top/uploads/medium/3b/52/0d19d61c49c2ed8e16d8e9101539.webp) ### 文件操作 @@ -206,7 +206,7 @@ close(fd);//关闭文件 * 缺点 * 要求连续的存储空间,会产生外部碎片,不利于文件的动态扩充 * 例图 - * ![](../../images/408/《操作系统》文件管理/顺序分配例图.png) + * ![](https://lychee.inksoul.top/uploads/original/8c/b0/eb0fe9bfa64672e9553fe84dea71.webp) * 链表分配 * 特点 * 存放是离散的,不用连续的,于是就可以消除磁盘碎片 @@ -222,7 +222,7 @@ close(fd);//关闭文件 * 缺点 * 只能按照文件的指针链顺序访问,查找效率低,指针信息存放消耗内存或磁盘空间 * 例图 - * ![](../../images/408/《操作系统》文件管理/非连续空间存放方式-链表方式.png) + * ![](https://lychee.inksoul.top/uploads/original/de/f5/1147f9177cb7ea4796e01a45c2ee.webp) * 索引分配 * 特点 * 为每个文件创建一个索引数据块存放指向文件数据块的指针列表 @@ -234,12 +234,12 @@ close(fd);//关闭文件 * 缺点 * 索引表增加存储空间的开销,索引表的查找策略对文件系统效率影响较大 * 例图 - * ![](../../images/408/《操作系统》文件管理/非连续空间存放方式-索引方式.png) + * ![](https://lychee.inksoul.top/uploads/original/af/c6/53200b3a295538efb4b35f7f7a1d.webp) * 链表 + 索引 * 特点 * 索引数据块留出一个存放下一个索引数据块的指针 * 例图 - * ![](../../images/408/《操作系统》文件管理/链式索引块.png) + * ![](https://lychee.inksoul.top/uploads/original/39/90/c6903f2f8e86df775a65136c4842.webp) * 索引 + 索引(多级索引) * 特点 * 通过一个索引块来存放多个索引数据块 @@ -265,12 +265,12 @@ close(fd);//关闭文件 * 为所有空闲空间建立一张表 * 表内容包括空闲区的第一个块号和该空闲区的块个数 * 例图 - * ![](../../images/408/《操作系统》文件管理/空闲表法.png) + * ![](https://lychee.inksoul.top/uploads/original/b0/b8/241f96662aa6babf6c9a40655aa3.webp) * 空闲链表法 * 每一个空闲块里有一个指针指向下一个空闲块 * 这样能够很方便地找到空闲块并管理起来 * 例图 - * ![](../../images/408/《操作系统》文件管理/空闲块链表.png) + * ![](https://lychee.inksoul.top/uploads/original/c5/4b/7dae46b384bc4c13f3bd2ea9c787.webp) * 位图法 * 位图时利用二进制的一位来表示磁盘中一个盘块的使用情况 * 磁盘上所有的盘块都有一个二进制与之对应 @@ -328,7 +328,7 @@ close(fd);//关闭文件 * 在磁盘中的结构 * 例图 - * ![](../../images/408/《操作系统》文件管理/块组.png) + * ![](https://lychee.inksoul.top/uploads/original/e1/0c/97c0fa24db5c7451f1d62bacb1f0.webp) * 引导块 * 在系统启动时用于启用引导 * 块组 @@ -371,7 +371,7 @@ close(fd);//关闭文件 ### 用户空间、系统调用、虚拟文件系统、缓存、文件系统和存储之间的关系 -![](../../images/408/《操作系统》文件管理/虚拟文件系统.png) +![](https://lychee.inksoul.top/uploads/medium/33/0d/00893d08c49606eb0d2039281bc3.webp) ### 分区和安装 @@ -415,7 +415,7 @@ close(fd);//关闭文件 * 不便于文件共享 * 不适合多用户的OS * 结构图 - * ![](../../images/408/《操作系统》文件管理/单级目录结构.jpg) + * ![](https://lychee.inksoul.top/uploads/original/98/75/8072452cfa354a436e12d25611d8.webp) * 两级目录结构 * 定义 * 文件目录分为主文件目录MDF和用户文件目录UFD @@ -427,7 +427,7 @@ close(fd);//关闭文件 * 缺点 * 缺乏灵活性,不能对文件分类 * 结构图 - * ![](../../images/408/《操作系统》文件管理/两级目录结构.png) + * ![](https://lychee.inksoul.top/uploads/original/6e/69/fcafe831e9b3096daec59ce79414.webp) * 树型目录结构 * 定义 * 使用绝对路径,相对路径,当前路径的结构 @@ -440,7 +440,7 @@ close(fd);//关闭文件 * 利于文件共享 * 查找文件增加了磁盘访问次数,会影响查询速度 * 例图 - * ![](../../images/408/《操作系统》文件管理/树型目录结构.jpg) + * ![](https://lychee.inksoul.top/uploads/original/db/ce/faef6ae7cd83dea33f82b14b8a53.webp) * 无环图目录结构 * 定义 * 在树型目录结构上 @@ -450,7 +450,7 @@ close(fd);//关闭文件 * 缺点 * 使系统的管理变得更加复杂 * 例图 - * ![](../../images/无环图目录结构.jpg) + * ![](https://lychee.inksoul.top/uploads/original/89/56/eabf857b6bfbd20cdcc46d67c92a.webp) ### 目录的查询/检索 @@ -494,7 +494,7 @@ close(fd);//关闭文件 * 若得到的值不为0,则不能删除此文件 * 即只要还有一个指针在,索引节点就不会被删除 * 例图 - * ![](../../images/408/《操作系统》文件管理/基于索引结点的共享方式.jpg) + * ![](https://lychee.inksoul.top/uploads/original/f4/cd/49dd3cf3de0acebe0a70b14bf213.webp) * 基于符号链实现文件共享【软链接】 * 定义 * 软链接相当于重新创建一个文件 diff --git a/content/ComputerBasics/《操作系统》计算机系统概述.md b/content/ComputerBasics/《操作系统》计算机系统概述.md index d177e42..f72884a 100644 --- a/content/ComputerBasics/《操作系统》计算机系统概述.md +++ b/content/ComputerBasics/《操作系统》计算机系统概述.md @@ -301,7 +301,7 @@ date: 2022-08-18T15:53:40+08:00 -![](../../images/408/《操作系统》计算机系统概述/system_boot_pic.jpg) +![](https://lychee.inksoul.top/uploads/original/aa/b6/dd60b007959187b3c7f5b066b100.webp) * 启动过程 1. CPU加电,CS:IP指向FFFF0H diff --git a/content/ComputerBasics/《操作系统》进程与线程.md b/content/ComputerBasics/《操作系统》进程与线程.md index cbc4d8f..7bc61a0 100644 --- a/content/ComputerBasics/《操作系统》进程与线程.md +++ b/content/ComputerBasics/《操作系统》进程与线程.md @@ -332,7 +332,7 @@ date: 2023-07-01T15:59:00+08:00 * 克服了多对一模型的并发度不高的缺点 * 克服了一对一模型的一个用户进程占用太多内核线程而开销打的缺点 -![](../../images/408/《操作系统》进程与线程/muti-thread_model.jpg) +![](https://lychee.inksoul.top/uploads/original/55/1b/4301b742f9da2710e3372576f79e.webp) ## 处理机调度 @@ -348,7 +348,7 @@ date: 2023-07-01T15:59:00+08:00 * 调度是多道程序OS的基础:调度是OS设计的核心问题 * 层次分类模型图 -![](../../images/408/《操作系统》进程与线程/调度层次分类模型图.jpg) +![](https://lychee.inksoul.top/uploads/original/73/f4/f278b5759ce6d4c59811230fec88.webp) * 高级调度、作业调度 * 是内存与辅存的调度,从后备队列中调度作业 @@ -371,7 +371,7 @@ date: 2023-07-01T15:59:00+08:00 * 调度程序结构图 -![](../../images/408/《操作系统》进程与线程/调度程序结构图.jpg) +![](https://lychee.inksoul.top/uploads/original/e6/68/fbb0e00bfa16e66f382572917a19.webp) * 调度器的组成 * 用于调度和分派CPU的组件 @@ -949,16 +949,16 @@ do{ #### 安全性算法和银行家算法例题举例 -![](../../images/408/《操作系统》进程与线程/安全性算法和银行家算法举例.jpg) +![](https://lychee.inksoul.top/uploads/medium/76/f2/dc5c769dc8aca10080713acbc556.webp) 安全性算法解法 -![](../../images/408/《操作系统》进程与线程/安全性算法和银行家算法举例安全性算法解法.jpg) +![](https://lychee.inksoul.top/uploads/medium/d7/c7/1e7b70fe44ca83f931b64be59038.webp) 银行家算法解法 -![](../../images/408/《操作系统》进程与线程/安全性算法和银行家算法举例银行家算法解法.jpg) +![](https://lychee.inksoul.top/uploads/medium2x/1b/43/50826d649f36e4e0210eb8c5c532.webp) diff --git a/static/images/408/《操作系统》IO管理/DMA工作原理.png b/static/images/408/《操作系统》IO管理/DMA工作原理.png deleted file mode 100644 index 7569150..0000000 Binary files a/static/images/408/《操作系统》IO管理/DMA工作原理.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/SPOOLing系统的运行过程.png b/static/images/408/《操作系统》IO管理/SPOOLing系统的运行过程.png deleted file mode 100644 index e89ffd5..0000000 Binary files a/static/images/408/《操作系统》IO管理/SPOOLing系统的运行过程.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/单缓冲T大于C.png b/static/images/408/《操作系统》IO管理/单缓冲T大于C.png deleted file mode 100644 index 05e83ea..0000000 Binary files a/static/images/408/《操作系统》IO管理/单缓冲T大于C.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/单缓冲T小于C.png b/static/images/408/《操作系统》IO管理/单缓冲T小于C.png deleted file mode 100644 index 3a82515..0000000 Binary files a/static/images/408/《操作系统》IO管理/单缓冲T小于C.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/单缓冲流程图.png b/static/images/408/《操作系统》IO管理/单缓冲流程图.png deleted file mode 100644 index c5d7617..0000000 Binary files a/static/images/408/《操作系统》IO管理/单缓冲流程图.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/双缓冲T大于C+M.png b/static/images/408/《操作系统》IO管理/双缓冲T大于C+M.png deleted file mode 100644 index 6237be4..0000000 Binary files a/static/images/408/《操作系统》IO管理/双缓冲T大于C+M.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/双缓冲T小于C+M.png b/static/images/408/《操作系统》IO管理/双缓冲T小于C+M.png deleted file mode 100644 index 8b74998..0000000 Binary files a/static/images/408/《操作系统》IO管理/双缓冲T小于C+M.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/双缓冲流程图.png b/static/images/408/《操作系统》IO管理/双缓冲流程图.png deleted file mode 100644 index 219b538..0000000 Binary files a/static/images/408/《操作系统》IO管理/双缓冲流程图.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/循环缓冲流程图.png b/static/images/408/《操作系统》IO管理/循环缓冲流程图.png deleted file mode 100644 index c8fca4a..0000000 Binary files a/static/images/408/《操作系统》IO管理/循环缓冲流程图.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/控制器控制表.png b/static/images/408/《操作系统》IO管理/控制器控制表.png deleted file mode 100644 index 21c86d2..0000000 Binary files a/static/images/408/《操作系统》IO管理/控制器控制表.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/磁盘结构示例图.jpg b/static/images/408/《操作系统》IO管理/磁盘结构示例图.jpg deleted file mode 100644 index 70c383f..0000000 Binary files a/static/images/408/《操作系统》IO管理/磁盘结构示例图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/磁盘调度-C-SCAN算法.png b/static/images/408/《操作系统》IO管理/磁盘调度-C-SCAN算法.png deleted file mode 100644 index a6abe5c..0000000 Binary files a/static/images/408/《操作系统》IO管理/磁盘调度-C-SCAN算法.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/磁盘调度-先来先服务.png b/static/images/408/《操作系统》IO管理/磁盘调度-先来先服务.png deleted file mode 100644 index 78c9a0a..0000000 Binary files a/static/images/408/《操作系统》IO管理/磁盘调度-先来先服务.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/磁盘调度-扫描算法.png b/static/images/408/《操作系统》IO管理/磁盘调度-扫描算法.png deleted file mode 100644 index 423aa9e..0000000 Binary files a/static/images/408/《操作系统》IO管理/磁盘调度-扫描算法.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/磁盘调度-最短寻道时间优先.png b/static/images/408/《操作系统》IO管理/磁盘调度-最短寻道时间优先.png deleted file mode 100644 index 8781ad9..0000000 Binary files a/static/images/408/《操作系统》IO管理/磁盘调度-最短寻道时间优先.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/系统设备表.png b/static/images/408/《操作系统》IO管理/系统设备表.png deleted file mode 100644 index 0d66eb8..0000000 Binary files a/static/images/408/《操作系统》IO管理/系统设备表.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/缓冲池流程图.png b/static/images/408/《操作系统》IO管理/缓冲池流程图.png deleted file mode 100644 index 8e0ba48..0000000 Binary files a/static/images/408/《操作系统》IO管理/缓冲池流程图.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/设备控制表.png b/static/images/408/《操作系统》IO管理/设备控制表.png deleted file mode 100644 index 60031b2..0000000 Binary files a/static/images/408/《操作系统》IO管理/设备控制表.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/通道控制方式流程图.png b/static/images/408/《操作系统》IO管理/通道控制方式流程图.png deleted file mode 100644 index 2db8cb3..0000000 Binary files a/static/images/408/《操作系统》IO管理/通道控制方式流程图.png and /dev/null differ diff --git a/static/images/408/《操作系统》IO管理/通道控制表.png b/static/images/408/《操作系统》IO管理/通道控制表.png deleted file mode 100644 index 099d637..0000000 Binary files a/static/images/408/《操作系统》IO管理/通道控制表.png and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/两级页表地址变化结构图.png b/static/images/408/《操作系统》内存管理/两级页表地址变化结构图.png deleted file mode 100644 index 02ec664..0000000 Binary files a/static/images/408/《操作系统》内存管理/两级页表地址变化结构图.png and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/使用页表的地址翻译流程图.png b/static/images/408/《操作系统》内存管理/使用页表的地址翻译流程图.png deleted file mode 100644 index 9acb8c2..0000000 Binary files a/static/images/408/《操作系统》内存管理/使用页表的地址翻译流程图.png and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/具有快表的地址变换结构图.png b/static/images/408/《操作系统》内存管理/具有快表的地址变换结构图.png deleted file mode 100644 index 81bdf91..0000000 Binary files a/static/images/408/《操作系统》内存管理/具有快表的地址变换结构图.png and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/内存映像的例图.jpg b/static/images/408/《操作系统》内存管理/内存映像的例图.jpg deleted file mode 100644 index 831e25f..0000000 Binary files a/static/images/408/《操作系统》内存管理/内存映像的例图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/分段系统的地址变换过程.jpg b/static/images/408/《操作系统》内存管理/分段系统的地址变换过程.jpg deleted file mode 100644 index b356464..0000000 Binary files a/static/images/408/《操作系统》内存管理/分段系统的地址变换过程.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/利用段表实现物理内存区映射.jpg b/static/images/408/《操作系统》内存管理/利用段表实现物理内存区映射.jpg deleted file mode 100644 index 3ac4215..0000000 Binary files a/static/images/408/《操作系统》内存管理/利用段表实现物理内存区映射.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/地址变换过程演示图.jpg b/static/images/408/《操作系统》内存管理/地址变换过程演示图.jpg deleted file mode 100644 index 3cfedaf..0000000 Binary files a/static/images/408/《操作系统》内存管理/地址变换过程演示图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/基本地址变换结构图.png b/static/images/408/《操作系统》内存管理/基本地址变换结构图.png deleted file mode 100644 index f8a544a..0000000 Binary files a/static/images/408/《操作系统》内存管理/基本地址变换结构图.png and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/段页式系统的地址变换机构图.jpg b/static/images/408/《操作系统》内存管理/段页式系统的地址变换机构图.jpg deleted file mode 100644 index f731463..0000000 Binary files a/static/images/408/《操作系统》内存管理/段页式系统的地址变换机构图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/段页式系统的逻辑地址结构图.jpg b/static/images/408/《操作系统》内存管理/段页式系统的逻辑地址结构图.jpg deleted file mode 100644 index 25fd64f..0000000 Binary files a/static/images/408/《操作系统》内存管理/段页式系统的逻辑地址结构图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/程序链接与接入过程图.jpg b/static/images/408/《操作系统》内存管理/程序链接与接入过程图.jpg deleted file mode 100644 index 302ba76..0000000 Binary files a/static/images/408/《操作系统》内存管理/程序链接与接入过程图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/重定位寄存器和界地址寄存器的硬件支持.jpg b/static/images/408/《操作系统》内存管理/重定位寄存器和界地址寄存器的硬件支持.jpg deleted file mode 100644 index 80d4eb9..0000000 Binary files a/static/images/408/《操作系统》内存管理/重定位寄存器和界地址寄存器的硬件支持.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》内存管理/重装入类别例图.jpg b/static/images/408/《操作系统》内存管理/重装入类别例图.jpg deleted file mode 100644 index 1215bbc..0000000 Binary files a/static/images/408/《操作系统》内存管理/重装入类别例图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/FAT文件系统示意图.png b/static/images/408/《操作系统》大题总结/FAT文件系统示意图.png deleted file mode 100644 index c4783c8..0000000 Binary files a/static/images/408/《操作系统》大题总结/FAT文件系统示意图.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/TLB2路组相联映射.jpg b/static/images/408/《操作系统》大题总结/TLB2路组相联映射.jpg deleted file mode 100644 index 0607746..0000000 Binary files a/static/images/408/《操作系统》大题总结/TLB2路组相联映射.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/TLB全相联映射.jpg b/static/images/408/《操作系统》大题总结/TLB全相联映射.jpg deleted file mode 100644 index d488917..0000000 Binary files a/static/images/408/《操作系统》大题总结/TLB全相联映射.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/TLB直接映射.jpg b/static/images/408/《操作系统》大题总结/TLB直接映射.jpg deleted file mode 100644 index 4ce6dad..0000000 Binary files a/static/images/408/《操作系统》大题总结/TLB直接映射.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/UFS文件系统示意图.png b/static/images/408/《操作系统》大题总结/UFS文件系统示意图.png deleted file mode 100644 index b19e50b..0000000 Binary files a/static/images/408/《操作系统》大题总结/UFS文件系统示意图.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题一.png b/static/images/408/《操作系统》大题总结/内存管理真题一.png deleted file mode 100644 index 114762b..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题七.png b/static/images/408/《操作系统》大题总结/内存管理真题七.png deleted file mode 100644 index a2046a1..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题七.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题三.png b/static/images/408/《操作系统》大题总结/内存管理真题三.png deleted file mode 100644 index ffd07d0..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题三.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题二.png b/static/images/408/《操作系统》大题总结/内存管理真题二.png deleted file mode 100644 index 0bd9127..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题二.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题五.png b/static/images/408/《操作系统》大题总结/内存管理真题五.png deleted file mode 100644 index 049a16d..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题五.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题六.png b/static/images/408/《操作系统》大题总结/内存管理真题六.png deleted file mode 100644 index 910af78..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题六.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理真题四.png b/static/images/408/《操作系统》大题总结/内存管理真题四.png deleted file mode 100644 index 5c9269b..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理真题四.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/内存管理知识体系.jpg b/static/images/408/《操作系统》大题总结/内存管理知识体系.jpg deleted file mode 100644 index 760e13d..0000000 Binary files a/static/images/408/《操作系统》大题总结/内存管理知识体系.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/哲学家问题一.png b/static/images/408/《操作系统》大题总结/哲学家问题一.png deleted file mode 100644 index 196cbc5..0000000 Binary files a/static/images/408/《操作系统》大题总结/哲学家问题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/文件管理真题一.png b/static/images/408/《操作系统》大题总结/文件管理真题一.png deleted file mode 100644 index ff646be..0000000 Binary files a/static/images/408/《操作系统》大题总结/文件管理真题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/文件管理真题三.png b/static/images/408/《操作系统》大题总结/文件管理真题三.png deleted file mode 100644 index 293a17b..0000000 Binary files a/static/images/408/《操作系统》大题总结/文件管理真题三.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/文件管理真题二.png b/static/images/408/《操作系统》大题总结/文件管理真题二.png deleted file mode 100644 index 581e2af..0000000 Binary files a/static/images/408/《操作系统》大题总结/文件管理真题二.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/文件管理真题五.png b/static/images/408/《操作系统》大题总结/文件管理真题五.png deleted file mode 100644 index e706cbf..0000000 Binary files a/static/images/408/《操作系统》大题总结/文件管理真题五.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/文件管理真题四.png b/static/images/408/《操作系统》大题总结/文件管理真题四.png deleted file mode 100644 index 41924d6..0000000 Binary files a/static/images/408/《操作系统》大题总结/文件管理真题四.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/理发师问题一.png b/static/images/408/《操作系统》大题总结/理发师问题一.png deleted file mode 100644 index 50812b0..0000000 Binary files a/static/images/408/《操作系统》大题总结/理发师问题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/生产者消费者问题一.png b/static/images/408/《操作系统》大题总结/生产者消费者问题一.png deleted file mode 100644 index 86f1ec9..0000000 Binary files a/static/images/408/《操作系统》大题总结/生产者消费者问题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/生产者消费者问题三.png b/static/images/408/《操作系统》大题总结/生产者消费者问题三.png deleted file mode 100644 index b446eb7..0000000 Binary files a/static/images/408/《操作系统》大题总结/生产者消费者问题三.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/生产者消费者问题二.png b/static/images/408/《操作系统》大题总结/生产者消费者问题二.png deleted file mode 100644 index ad7a6ff..0000000 Binary files a/static/images/408/《操作系统》大题总结/生产者消费者问题二.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/磁盘管理真题一.png b/static/images/408/《操作系统》大题总结/磁盘管理真题一.png deleted file mode 100644 index ce73fcc..0000000 Binary files a/static/images/408/《操作系统》大题总结/磁盘管理真题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/磁盘管理真题三.png b/static/images/408/《操作系统》大题总结/磁盘管理真题三.png deleted file mode 100644 index c66e76b..0000000 Binary files a/static/images/408/《操作系统》大题总结/磁盘管理真题三.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/磁盘管理真题二.png b/static/images/408/《操作系统》大题总结/磁盘管理真题二.png deleted file mode 100644 index 472e7a2..0000000 Binary files a/static/images/408/《操作系统》大题总结/磁盘管理真题二.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/读者写者问题一.png b/static/images/408/《操作系统》大题总结/读者写者问题一.png deleted file mode 100644 index 3c1fe92..0000000 Binary files a/static/images/408/《操作系统》大题总结/读者写者问题一.png and /dev/null differ diff --git a/static/images/408/《操作系统》大题总结/读者写者问题二.png b/static/images/408/《操作系统》大题总结/读者写者问题二.png deleted file mode 100644 index e688c7c..0000000 Binary files a/static/images/408/《操作系统》大题总结/读者写者问题二.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/两级目录结构.png b/static/images/408/《操作系统》文件管理/两级目录结构.png deleted file mode 100644 index 0cd7323..0000000 Binary files a/static/images/408/《操作系统》文件管理/两级目录结构.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/书目录和计算机目录对比举例.jpg b/static/images/408/《操作系统》文件管理/书目录和计算机目录对比举例.jpg deleted file mode 100644 index 9126543..0000000 Binary files a/static/images/408/《操作系统》文件管理/书目录和计算机目录对比举例.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/单级目录结构.jpg b/static/images/408/《操作系统》文件管理/单级目录结构.jpg deleted file mode 100644 index 1ce7533..0000000 Binary files a/static/images/408/《操作系统》文件管理/单级目录结构.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/块组.png b/static/images/408/《操作系统》文件管理/块组.png deleted file mode 100644 index 30c1533..0000000 Binary files a/static/images/408/《操作系统》文件管理/块组.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/基于索引结点的共享方式.jpg b/static/images/408/《操作系统》文件管理/基于索引结点的共享方式.jpg deleted file mode 100644 index 5632b20..0000000 Binary files a/static/images/408/《操作系统》文件管理/基于索引结点的共享方式.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/多级索引块.png b/static/images/408/《操作系统》文件管理/多级索引块.png deleted file mode 100644 index b184976..0000000 Binary files a/static/images/408/《操作系统》文件管理/多级索引块.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/无环图目录结构.jpg b/static/images/408/《操作系统》文件管理/无环图目录结构.jpg deleted file mode 100644 index 55ca042..0000000 Binary files a/static/images/408/《操作系统》文件管理/无环图目录结构.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/树型目录结构.jpg b/static/images/408/《操作系统》文件管理/树型目录结构.jpg deleted file mode 100644 index 0e8986b..0000000 Binary files a/static/images/408/《操作系统》文件管理/树型目录结构.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/空闲块链表.png b/static/images/408/《操作系统》文件管理/空闲块链表.png deleted file mode 100644 index 9cb388f..0000000 Binary files a/static/images/408/《操作系统》文件管理/空闲块链表.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/空闲表法.png b/static/images/408/《操作系统》文件管理/空闲表法.png deleted file mode 100644 index ac84a78..0000000 Binary files a/static/images/408/《操作系统》文件管理/空闲表法.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/虚拟文件系统.png b/static/images/408/《操作系统》文件管理/虚拟文件系统.png deleted file mode 100644 index 249dfb5..0000000 Binary files a/static/images/408/《操作系统》文件管理/虚拟文件系统.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/链式索引块.png b/static/images/408/《操作系统》文件管理/链式索引块.png deleted file mode 100644 index f759548..0000000 Binary files a/static/images/408/《操作系统》文件管理/链式索引块.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/非连续空间存放方式-索引方式.png b/static/images/408/《操作系统》文件管理/非连续空间存放方式-索引方式.png deleted file mode 100644 index 9c1a4c6..0000000 Binary files a/static/images/408/《操作系统》文件管理/非连续空间存放方式-索引方式.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/非连续空间存放方式-链表方式.png b/static/images/408/《操作系统》文件管理/非连续空间存放方式-链表方式.png deleted file mode 100644 index ad72f24..0000000 Binary files a/static/images/408/《操作系统》文件管理/非连续空间存放方式-链表方式.png and /dev/null differ diff --git a/static/images/408/《操作系统》文件管理/顺序分配例图.png b/static/images/408/《操作系统》文件管理/顺序分配例图.png deleted file mode 100644 index 48e4afd..0000000 Binary files a/static/images/408/《操作系统》文件管理/顺序分配例图.png and /dev/null differ diff --git a/static/images/408/《操作系统》计算机系统概述/system_boot_pic.jpg b/static/images/408/《操作系统》计算机系统概述/system_boot_pic.jpg deleted file mode 100644 index cc19c12..0000000 Binary files a/static/images/408/《操作系统》计算机系统概述/system_boot_pic.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》进程与线程/muti-thread_model.jpg b/static/images/408/《操作系统》进程与线程/muti-thread_model.jpg deleted file mode 100644 index 4dbcf93..0000000 Binary files a/static/images/408/《操作系统》进程与线程/muti-thread_model.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例.jpg b/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例.jpg deleted file mode 100644 index 8ceb492..0000000 Binary files a/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例安全性算法解法.jpg b/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例安全性算法解法.jpg deleted file mode 100644 index 774044a..0000000 Binary files a/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例安全性算法解法.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例银行家算法解法.jpg b/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例银行家算法解法.jpg deleted file mode 100644 index 80d1726..0000000 Binary files a/static/images/408/《操作系统》进程与线程/安全性算法和银行家算法举例银行家算法解法.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》进程与线程/调度层次分类模型图.jpg b/static/images/408/《操作系统》进程与线程/调度层次分类模型图.jpg deleted file mode 100644 index 4bfbbd0..0000000 Binary files a/static/images/408/《操作系统》进程与线程/调度层次分类模型图.jpg and /dev/null differ diff --git a/static/images/408/《操作系统》进程与线程/调度程序结构图.jpg b/static/images/408/《操作系统》进程与线程/调度程序结构图.jpg deleted file mode 100644 index e6f0526..0000000 Binary files a/static/images/408/《操作系统》进程与线程/调度程序结构图.jpg and /dev/null differ diff --git a/static/images/408/《数据结构》绪论/例题1.webp b/static/images/408/《数据结构》绪论/例题1.webp new file mode 100644 index 0000000..827edd4 Binary files /dev/null and b/static/images/408/《数据结构》绪论/例题1.webp differ diff --git a/static/images/408/《数据结构》绪论/例题2.webp b/static/images/408/《数据结构》绪论/例题2.webp new file mode 100644 index 0000000..3d630ea Binary files /dev/null and b/static/images/408/《数据结构》绪论/例题2.webp differ diff --git a/static/images/408/《计网》传输层/TCP报文段1.webp b/static/images/408/《计网》传输层/TCP报文段1.webp new file mode 100644 index 0000000..1d92f32 Binary files /dev/null and b/static/images/408/《计网》传输层/TCP报文段1.webp differ diff --git a/static/images/408/《计网》传输层/TCP报文段2.webp b/static/images/408/《计网》传输层/TCP报文段2.webp new file mode 100644 index 0000000..dae2e45 Binary files /dev/null and b/static/images/408/《计网》传输层/TCP报文段2.webp differ diff --git a/static/images/408/《计网》传输层/TCP连接释放(四次握手).webp b/static/images/408/《计网》传输层/TCP连接释放(四次握手).webp new file mode 100644 index 0000000..c388a86 Binary files /dev/null and b/static/images/408/《计网》传输层/TCP连接释放(四次握手).webp differ diff --git a/static/images/408/《计网》传输层/TCP连接(三次握手).webp b/static/images/408/《计网》传输层/TCP连接(三次握手).webp new file mode 100644 index 0000000..1e3880d Binary files /dev/null and b/static/images/408/《计网》传输层/TCP连接(三次握手).webp differ diff --git a/static/images/408/《计网》传输层/UDP协议.webp b/static/images/408/《计网》传输层/UDP协议.webp new file mode 100644 index 0000000..99c34f0 Binary files /dev/null and b/static/images/408/《计网》传输层/UDP协议.webp differ diff --git a/static/images/408/《计网》传输层/UDP校验1.webp b/static/images/408/《计网》传输层/UDP校验1.webp new file mode 100644 index 0000000..fc0bbbb Binary files /dev/null and b/static/images/408/《计网》传输层/UDP校验1.webp differ diff --git a/static/images/408/《计网》传输层/UDP校验2.webp b/static/images/408/《计网》传输层/UDP校验2.webp new file mode 100644 index 0000000..03eca97 Binary files /dev/null and b/static/images/408/《计网》传输层/UDP校验2.webp differ diff --git a/static/images/408/《计网》传输层/UDP首部格式.webp b/static/images/408/《计网》传输层/UDP首部格式.webp new file mode 100644 index 0000000..9d078b4 Binary files /dev/null and b/static/images/408/《计网》传输层/UDP首部格式.webp differ diff --git a/static/images/408/《计网》传输层/快重传.webp b/static/images/408/《计网》传输层/快重传.webp new file mode 100644 index 0000000..806c538 Binary files /dev/null and b/static/images/408/《计网》传输层/快重传.webp differ diff --git a/static/images/408/《计网》传输层/慢开始.webp b/static/images/408/《计网》传输层/慢开始.webp new file mode 100644 index 0000000..089ba29 Binary files /dev/null and b/static/images/408/《计网》传输层/慢开始.webp differ diff --git a/static/images/408/《计网》传输层/拥塞避免.webp b/static/images/408/《计网》传输层/拥塞避免.webp new file mode 100644 index 0000000..ad63b0e Binary files /dev/null and b/static/images/408/《计网》传输层/拥塞避免.webp differ diff --git a/static/images/408/《计网》大题/各报文常考内容.webp b/static/images/408/《计网》大题/各报文常考内容.webp new file mode 100644 index 0000000..d887083 Binary files /dev/null and b/static/images/408/《计网》大题/各报文常考内容.webp differ diff --git a/static/images/408/《计网》大题/大题1.webp b/static/images/408/《计网》大题/大题1.webp new file mode 100644 index 0000000..8a4282f Binary files /dev/null and b/static/images/408/《计网》大题/大题1.webp differ diff --git a/static/images/408/《计网》大题/大题10.webp b/static/images/408/《计网》大题/大题10.webp new file mode 100644 index 0000000..5b0ef52 Binary files /dev/null and b/static/images/408/《计网》大题/大题10.webp differ diff --git a/static/images/408/《计网》大题/大题11.webp b/static/images/408/《计网》大题/大题11.webp new file mode 100644 index 0000000..82dcebf Binary files /dev/null and b/static/images/408/《计网》大题/大题11.webp differ diff --git a/static/images/408/《计网》大题/大题12.webp b/static/images/408/《计网》大题/大题12.webp new file mode 100644 index 0000000..58ca1b5 Binary files /dev/null and b/static/images/408/《计网》大题/大题12.webp differ diff --git a/static/images/408/《计网》大题/大题2.webp b/static/images/408/《计网》大题/大题2.webp new file mode 100644 index 0000000..5c52430 Binary files /dev/null and b/static/images/408/《计网》大题/大题2.webp differ diff --git a/static/images/408/《计网》大题/大题3.webp b/static/images/408/《计网》大题/大题3.webp new file mode 100644 index 0000000..37dbdf3 Binary files /dev/null and b/static/images/408/《计网》大题/大题3.webp differ diff --git a/static/images/408/《计网》大题/大题4.webp b/static/images/408/《计网》大题/大题4.webp new file mode 100644 index 0000000..d29a5f6 Binary files /dev/null and b/static/images/408/《计网》大题/大题4.webp differ diff --git a/static/images/408/《计网》大题/大题5.webp b/static/images/408/《计网》大题/大题5.webp new file mode 100644 index 0000000..7a9f801 Binary files /dev/null and b/static/images/408/《计网》大题/大题5.webp differ diff --git a/static/images/408/《计网》大题/大题6.webp b/static/images/408/《计网》大题/大题6.webp new file mode 100644 index 0000000..8747c72 Binary files /dev/null and b/static/images/408/《计网》大题/大题6.webp differ diff --git a/static/images/408/《计网》大题/大题7.webp b/static/images/408/《计网》大题/大题7.webp new file mode 100644 index 0000000..5b79687 Binary files /dev/null and b/static/images/408/《计网》大题/大题7.webp differ diff --git a/static/images/408/《计网》大题/大题8.webp b/static/images/408/《计网》大题/大题8.webp new file mode 100644 index 0000000..48872de Binary files /dev/null and b/static/images/408/《计网》大题/大题8.webp differ diff --git a/static/images/408/《计网》大题/大题9.webp b/static/images/408/《计网》大题/大题9.webp new file mode 100644 index 0000000..95f4ae1 Binary files /dev/null and b/static/images/408/《计网》大题/大题9.webp differ diff --git a/static/images/408/《计网》数据链路层/CRC计算举例1.webp b/static/images/408/《计网》数据链路层/CRC计算举例1.webp new file mode 100644 index 0000000..7bedcc0 Binary files /dev/null and b/static/images/408/《计网》数据链路层/CRC计算举例1.webp differ diff --git a/static/images/408/《计网》数据链路层/CRC计算举例2.webp b/static/images/408/《计网》数据链路层/CRC计算举例2.webp new file mode 100644 index 0000000..2491202 Binary files /dev/null and b/static/images/408/《计网》数据链路层/CRC计算举例2.webp differ diff --git a/static/images/408/《计网》数据链路层/CRC计算举例3.webp b/static/images/408/《计网》数据链路层/CRC计算举例3.webp new file mode 100644 index 0000000..9343fe4 Binary files /dev/null and b/static/images/408/《计网》数据链路层/CRC计算举例3.webp differ diff --git a/static/images/408/《计网》数据链路层/CSMACA为什么不能用于无线网.webp b/static/images/408/《计网》数据链路层/CSMACA为什么不能用于无线网.webp new file mode 100644 index 0000000..7e429f1 Binary files /dev/null and b/static/images/408/《计网》数据链路层/CSMACA为什么不能用于无线网.webp differ diff --git a/static/images/408/《计网》数据链路层/CSMACA是什么.webp b/static/images/408/《计网》数据链路层/CSMACA是什么.webp new file mode 100644 index 0000000..e901ba6 Binary files /dev/null and b/static/images/408/《计网》数据链路层/CSMACA是什么.webp differ diff --git a/static/images/408/《计网》数据链路层/CSMACA的工作原理.webp b/static/images/408/《计网》数据链路层/CSMACA的工作原理.webp new file mode 100644 index 0000000..adaef4b Binary files /dev/null and b/static/images/408/《计网》数据链路层/CSMACA的工作原理.webp differ diff --git a/static/images/408/《计网》数据链路层/IEEE802.11局域网的MAC地址格式.webp b/static/images/408/《计网》数据链路层/IEEE802.11局域网的MAC地址格式.webp new file mode 100644 index 0000000..c84a6a6 Binary files /dev/null and b/static/images/408/《计网》数据链路层/IEEE802.11局域网的MAC地址格式.webp differ diff --git a/static/images/408/《计网》数据链路层/IEEE802局域网的MAC地址发送顺序.webp b/static/images/408/《计网》数据链路层/IEEE802局域网的MAC地址发送顺序.webp new file mode 100644 index 0000000..b8c8d38 Binary files /dev/null and b/static/images/408/《计网》数据链路层/IEEE802局域网的MAC地址发送顺序.webp differ diff --git a/static/images/408/《计网》数据链路层/MAC地址的基本概述.webp b/static/images/408/《计网》数据链路层/MAC地址的基本概述.webp new file mode 100644 index 0000000..bb7ca93 Binary files /dev/null and b/static/images/408/《计网》数据链路层/MAC地址的基本概述.webp differ diff --git a/static/images/408/《计网》数据链路层/MA,CD,CS的协作.webp b/static/images/408/《计网》数据链路层/MA,CD,CS的协作.webp new file mode 100644 index 0000000..96ac203 Binary files /dev/null and b/static/images/408/《计网》数据链路层/MA,CD,CS的协作.webp differ diff --git a/static/images/408/《计网》数据链路层/VLAN的实现机制.webp b/static/images/408/《计网》数据链路层/VLAN的实现机制.webp new file mode 100644 index 0000000..0257e3d Binary files /dev/null and b/static/images/408/《计网》数据链路层/VLAN的实现机制.webp differ diff --git a/static/images/408/《计网》数据链路层/VLAN的概述.webp b/static/images/408/《计网》数据链路层/VLAN的概述.webp new file mode 100644 index 0000000..51427e3 Binary files /dev/null and b/static/images/408/《计网》数据链路层/VLAN的概述.webp differ diff --git a/static/images/408/《计网》数据链路层/以太网交换机生成树协议STP.webp b/static/images/408/《计网》数据链路层/以太网交换机生成树协议STP.webp new file mode 100644 index 0000000..92a5a6e Binary files /dev/null and b/static/images/408/《计网》数据链路层/以太网交换机生成树协议STP.webp differ diff --git a/static/images/408/《计网》数据链路层/以太网交换机的概述.webp b/static/images/408/《计网》数据链路层/以太网交换机的概述.webp new file mode 100644 index 0000000..0a6ffb5 Binary files /dev/null and b/static/images/408/《计网》数据链路层/以太网交换机的概述.webp differ diff --git a/static/images/408/《计网》数据链路层/以太网交换机自学习和转发帧的过程.webp b/static/images/408/《计网》数据链路层/以太网交换机自学习和转发帧的过程.webp new file mode 100644 index 0000000..c518d79 Binary files /dev/null and b/static/images/408/《计网》数据链路层/以太网交换机自学习和转发帧的过程.webp differ diff --git a/static/images/408/《计网》数据链路层/以太网和802的MAC帧示意图.webp b/static/images/408/《计网》数据链路层/以太网和802的MAC帧示意图.webp new file mode 100644 index 0000000..420c407 Binary files /dev/null and b/static/images/408/《计网》数据链路层/以太网和802的MAC帧示意图.webp differ diff --git a/static/images/408/《计网》数据链路层/例题1回退N帧协议.webp b/static/images/408/《计网》数据链路层/例题1回退N帧协议.webp new file mode 100644 index 0000000..e7d6824 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题1回退N帧协议.webp differ diff --git a/static/images/408/《计网》数据链路层/例题1码分多路复用.webp b/static/images/408/《计网》数据链路层/例题1码分多路复用.webp new file mode 100644 index 0000000..af8575c Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题1码分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/例题2停止-等待协议.webp b/static/images/408/《计网》数据链路层/例题2停止-等待协议.webp new file mode 100644 index 0000000..003db30 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题2停止-等待协议.webp differ diff --git a/static/images/408/《计网》数据链路层/例题2回退N帧协议.webp b/static/images/408/《计网》数据链路层/例题2回退N帧协议.webp new file mode 100644 index 0000000..0a0fe8d Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题2回退N帧协议.webp differ diff --git a/static/images/408/《计网》数据链路层/例题2码分多路复用.webp b/static/images/408/《计网》数据链路层/例题2码分多路复用.webp new file mode 100644 index 0000000..5f3ea08 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题2码分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/例题3回退N帧协议.webp b/static/images/408/《计网》数据链路层/例题3回退N帧协议.webp new file mode 100644 index 0000000..0bf1fa6 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题3回退N帧协议.webp differ diff --git a/static/images/408/《计网》数据链路层/例题3码分多路复用.webp b/static/images/408/《计网》数据链路层/例题3码分多路复用.webp new file mode 100644 index 0000000..dafa2df Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题3码分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/例题4回退N帧协议.webp b/static/images/408/《计网》数据链路层/例题4回退N帧协议.webp new file mode 100644 index 0000000..b7d4077 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题4回退N帧协议.webp differ diff --git a/static/images/408/《计网》数据链路层/例题4码分多路复用.webp b/static/images/408/《计网》数据链路层/例题4码分多路复用.webp new file mode 100644 index 0000000..7a5bc5c Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题4码分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/例题5码分多路复用.webp b/static/images/408/《计网》数据链路层/例题5码分多路复用.webp new file mode 100644 index 0000000..c248913 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题5码分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/例题以太网交换机自学习和转发帧的过程.webp b/static/images/408/《计网》数据链路层/例题以太网交换机自学习和转发帧的过程.webp new file mode 100644 index 0000000..5cacc1a Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题以太网交换机自学习和转发帧的过程.webp differ diff --git a/static/images/408/《计网》数据链路层/例题停止-等待协议.webp b/static/images/408/《计网》数据链路层/例题停止-等待协议.webp new file mode 100644 index 0000000..4fafaa8 Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题停止-等待协议.webp differ diff --git a/static/images/408/《计网》数据链路层/例题选择重传协议.webp b/static/images/408/《计网》数据链路层/例题选择重传协议.webp new file mode 100644 index 0000000..8f4580c Binary files /dev/null and b/static/images/408/《计网》数据链路层/例题选择重传协议.webp differ diff --git a/static/images/408/《计网》数据链路层/信道利用率.webp b/static/images/408/《计网》数据链路层/信道利用率.webp new file mode 100644 index 0000000..e45a234 Binary files /dev/null and b/static/images/408/《计网》数据链路层/信道利用率.webp differ diff --git a/static/images/408/《计网》数据链路层/信道复用.webp b/static/images/408/《计网》数据链路层/信道复用.webp new file mode 100644 index 0000000..792c17f Binary files /dev/null and b/static/images/408/《计网》数据链路层/信道复用.webp differ diff --git a/static/images/408/《计网》数据链路层/信道预约.webp b/static/images/408/《计网》数据链路层/信道预约.webp new file mode 100644 index 0000000..265fca9 Binary files /dev/null and b/static/images/408/《计网》数据链路层/信道预约.webp differ diff --git a/static/images/408/《计网》数据链路层/停止-等待协议.webp b/static/images/408/《计网》数据链路层/停止-等待协议.webp new file mode 100644 index 0000000..330b1b1 Binary files /dev/null and b/static/images/408/《计网》数据链路层/停止-等待协议.webp differ diff --git a/static/images/408/《计网》数据链路层/停止-等待协议的信道利用率.webp b/static/images/408/《计网》数据链路层/停止-等待协议的信道利用率.webp new file mode 100644 index 0000000..560cc7e Binary files /dev/null and b/static/images/408/《计网》数据链路层/停止-等待协议的信道利用率.webp differ diff --git a/static/images/408/《计网》数据链路层/回退N帧协议.webp b/static/images/408/《计网》数据链路层/回退N帧协议.webp new file mode 100644 index 0000000..3371ecb Binary files /dev/null and b/static/images/408/《计网》数据链路层/回退N帧协议.webp differ diff --git a/static/images/408/《计网》数据链路层/多址接入MA.webp b/static/images/408/《计网》数据链路层/多址接入MA.webp new file mode 100644 index 0000000..9fcc09a Binary files /dev/null and b/static/images/408/《计网》数据链路层/多址接入MA.webp differ diff --git a/static/images/408/《计网》数据链路层/媒体接入控制.webp b/static/images/408/《计网》数据链路层/媒体接入控制.webp new file mode 100644 index 0000000..db92952 Binary files /dev/null and b/static/images/408/《计网》数据链路层/媒体接入控制.webp differ diff --git a/static/images/408/《计网》数据链路层/帧发送流程.webp b/static/images/408/《计网》数据链路层/帧发送流程.webp new file mode 100644 index 0000000..a64d922 Binary files /dev/null and b/static/images/408/《计网》数据链路层/帧发送流程.webp differ diff --git a/static/images/408/《计网》数据链路层/帧间间隔IFS(InterFrame Space.webp b/static/images/408/《计网》数据链路层/帧间间隔IFS(InterFrame Space.webp new file mode 100644 index 0000000..e48d13e Binary files /dev/null and b/static/images/408/《计网》数据链路层/帧间间隔IFS(InterFrame Space.webp differ diff --git a/static/images/408/《计网》数据链路层/征用期(碰撞期.webp b/static/images/408/《计网》数据链路层/征用期(碰撞期.webp new file mode 100644 index 0000000..75c56c6 Binary files /dev/null and b/static/images/408/《计网》数据链路层/征用期(碰撞期.webp differ diff --git a/static/images/408/《计网》数据链路层/截断二进制指数退避算法.webp b/static/images/408/《计网》数据链路层/截断二进制指数退避算法.webp new file mode 100644 index 0000000..5ef877b Binary files /dev/null and b/static/images/408/《计网》数据链路层/截断二进制指数退避算法.webp differ diff --git a/static/images/408/《计网》数据链路层/时分多路复用.webp b/static/images/408/《计网》数据链路层/时分多路复用.webp new file mode 100644 index 0000000..d36f292 Binary files /dev/null and b/static/images/408/《计网》数据链路层/时分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/最大帧长.webp b/static/images/408/《计网》数据链路层/最大帧长.webp new file mode 100644 index 0000000..4e6d97a Binary files /dev/null and b/static/images/408/《计网》数据链路层/最大帧长.webp differ diff --git a/static/images/408/《计网》数据链路层/最小帧长.webp b/static/images/408/《计网》数据链路层/最小帧长.webp new file mode 100644 index 0000000..05ea6e5 Binary files /dev/null and b/static/images/408/《计网》数据链路层/最小帧长.webp differ diff --git a/static/images/408/《计网》数据链路层/波分多路复用.webp b/static/images/408/《计网》数据链路层/波分多路复用.webp new file mode 100644 index 0000000..d989b7f Binary files /dev/null and b/static/images/408/《计网》数据链路层/波分多路复用.webp differ diff --git a/static/images/408/《计网》数据链路层/点对点协议PPP.webp b/static/images/408/《计网》数据链路层/点对点协议PPP.webp new file mode 100644 index 0000000..82e0f38 Binary files /dev/null and b/static/images/408/《计网》数据链路层/点对点协议PPP.webp differ diff --git a/static/images/408/《计网》数据链路层/虚拟载波监听.webp b/static/images/408/《计网》数据链路层/虚拟载波监听.webp new file mode 100644 index 0000000..d8ccae3 Binary files /dev/null and b/static/images/408/《计网》数据链路层/虚拟载波监听.webp differ diff --git a/static/images/408/《计网》数据链路层/详细回退N帧协议.webp b/static/images/408/《计网》数据链路层/详细回退N帧协议.webp new file mode 100644 index 0000000..99529dc Binary files /dev/null and b/static/images/408/《计网》数据链路层/详细回退N帧协议.webp differ diff --git a/static/images/408/《计网》数据链路层/详细选择重传协议.webp b/static/images/408/《计网》数据链路层/详细选择重传协议.webp new file mode 100644 index 0000000..fb71653 Binary files /dev/null and b/static/images/408/《计网》数据链路层/详细选择重传协议.webp differ diff --git a/static/images/408/《计网》数据链路层/退避算法工作原理.webp b/static/images/408/《计网》数据链路层/退避算法工作原理.webp new file mode 100644 index 0000000..9b6b05e Binary files /dev/null and b/static/images/408/《计网》数据链路层/退避算法工作原理.webp differ diff --git a/static/images/408/《计网》数据链路层/退避算法示意图.webp b/static/images/408/《计网》数据链路层/退避算法示意图.webp new file mode 100644 index 0000000..8247a69 Binary files /dev/null and b/static/images/408/《计网》数据链路层/退避算法示意图.webp differ diff --git a/static/images/408/《计网》数据链路层/选择重传协议.webp b/static/images/408/《计网》数据链路层/选择重传协议.webp new file mode 100644 index 0000000..f8ebc16 Binary files /dev/null and b/static/images/408/《计网》数据链路层/选择重传协议.webp differ diff --git a/static/images/408/《计网》数据链路层/集线器和交换机的对比1.webp b/static/images/408/《计网》数据链路层/集线器和交换机的对比1.webp new file mode 100644 index 0000000..633645c Binary files /dev/null and b/static/images/408/《计网》数据链路层/集线器和交换机的对比1.webp differ diff --git a/static/images/408/《计网》数据链路层/集线器和交换机的对比2.webp b/static/images/408/《计网》数据链路层/集线器和交换机的对比2.webp new file mode 100644 index 0000000..e30e291 Binary files /dev/null and b/static/images/408/《计网》数据链路层/集线器和交换机的对比2.webp differ diff --git a/static/images/408/《计网》数据链路层/频分多路复用.webp b/static/images/408/《计网》数据链路层/频分多路复用.webp new file mode 100644 index 0000000..257ad98 Binary files /dev/null and b/static/images/408/《计网》数据链路层/频分多路复用.webp differ diff --git a/static/images/408/《计网》网络层/DHCP主要内容.webp b/static/images/408/《计网》网络层/DHCP主要内容.webp new file mode 100644 index 0000000..dab598c Binary files /dev/null and b/static/images/408/《计网》网络层/DHCP主要内容.webp differ diff --git a/static/images/408/《计网》网络层/DHCP过程.webp b/static/images/408/《计网》网络层/DHCP过程.webp new file mode 100644 index 0000000..0ae8130 Binary files /dev/null and b/static/images/408/《计网》网络层/DHCP过程.webp differ diff --git a/static/images/408/《计网》网络层/DHCP过程1.webp b/static/images/408/《计网》网络层/DHCP过程1.webp new file mode 100644 index 0000000..8930a46 Binary files /dev/null and b/static/images/408/《计网》网络层/DHCP过程1.webp differ diff --git a/static/images/408/《计网》网络层/DR和BDR.webp b/static/images/408/《计网》网络层/DR和BDR.webp new file mode 100644 index 0000000..f2ea0e3 Binary files /dev/null and b/static/images/408/《计网》网络层/DR和BDR.webp differ diff --git a/static/images/408/《计网》网络层/ICMP应用1.webp b/static/images/408/《计网》网络层/ICMP应用1.webp new file mode 100644 index 0000000..89fa5b7 Binary files /dev/null and b/static/images/408/《计网》网络层/ICMP应用1.webp differ diff --git a/static/images/408/《计网》网络层/ICMP应用2.webp b/static/images/408/《计网》网络层/ICMP应用2.webp new file mode 100644 index 0000000..480944c Binary files /dev/null and b/static/images/408/《计网》网络层/ICMP应用2.webp differ diff --git a/static/images/408/《计网》网络层/ICMP应用3.webp b/static/images/408/《计网》网络层/ICMP应用3.webp new file mode 100644 index 0000000..2e38e62 Binary files /dev/null and b/static/images/408/《计网》网络层/ICMP应用3.webp differ diff --git a/static/images/408/《计网》网络层/ICMP应用4.webp b/static/images/408/《计网》网络层/ICMP应用4.webp new file mode 100644 index 0000000..dc84445 Binary files /dev/null and b/static/images/408/《计网》网络层/ICMP应用4.webp differ diff --git a/static/images/408/《计网》网络层/ICMP概述.webp b/static/images/408/《计网》网络层/ICMP概述.webp new file mode 100644 index 0000000..8525658 Binary files /dev/null and b/static/images/408/《计网》网络层/ICMP概述.webp differ diff --git a/static/images/408/《计网》网络层/ICMP询问方式.webp b/static/images/408/《计网》网络层/ICMP询问方式.webp new file mode 100644 index 0000000..2a5a449 Binary files /dev/null and b/static/images/408/《计网》网络层/ICMP询问方式.webp differ diff --git a/static/images/408/《计网》网络层/IPV4分片1.webp b/static/images/408/《计网》网络层/IPV4分片1.webp new file mode 100644 index 0000000..6e744dd Binary files /dev/null and b/static/images/408/《计网》网络层/IPV4分片1.webp differ diff --git a/static/images/408/《计网》网络层/IPV4分片2.webp b/static/images/408/《计网》网络层/IPV4分片2.webp new file mode 100644 index 0000000..3217053 Binary files /dev/null and b/static/images/408/《计网》网络层/IPV4分片2.webp differ diff --git a/static/images/408/《计网》网络层/IPV4分片例题.webp b/static/images/408/《计网》网络层/IPV4分片例题.webp new file mode 100644 index 0000000..13f1651 Binary files /dev/null and b/static/images/408/《计网》网络层/IPV4分片例题.webp differ diff --git a/static/images/408/《计网》网络层/IPV4首部.webp b/static/images/408/《计网》网络层/IPV4首部.webp new file mode 100644 index 0000000..a9040fd Binary files /dev/null and b/static/images/408/《计网》网络层/IPV4首部.webp differ diff --git a/static/images/408/《计网》网络层/IPV61.webp b/static/images/408/《计网》网络层/IPV61.webp new file mode 100644 index 0000000..01412ad Binary files /dev/null and b/static/images/408/《计网》网络层/IPV61.webp differ diff --git a/static/images/408/《计网》网络层/IPV62.webp b/static/images/408/《计网》网络层/IPV62.webp new file mode 100644 index 0000000..6aa174f Binary files /dev/null and b/static/images/408/《计网》网络层/IPV62.webp differ diff --git a/static/images/408/《计网》网络层/IPV63.webp b/static/images/408/《计网》网络层/IPV63.webp new file mode 100644 index 0000000..bbd87db Binary files /dev/null and b/static/images/408/《计网》网络层/IPV63.webp differ diff --git a/static/images/408/《计网》网络层/IP地址定义.webp b/static/images/408/《计网》网络层/IP地址定义.webp new file mode 100644 index 0000000..08dea84 Binary files /dev/null and b/static/images/408/《计网》网络层/IP地址定义.webp differ diff --git a/static/images/408/《计网》网络层/NAT转换流程.webp b/static/images/408/《计网》网络层/NAT转换流程.webp new file mode 100644 index 0000000..250537e Binary files /dev/null and b/static/images/408/《计网》网络层/NAT转换流程.webp differ diff --git a/static/images/408/《计网》网络层/OSPF基本概念.webp b/static/images/408/《计网》网络层/OSPF基本概念.webp new file mode 100644 index 0000000..e76f7b0 Binary files /dev/null and b/static/images/408/《计网》网络层/OSPF基本概念.webp differ diff --git a/static/images/408/《计网》网络层/OSPF的基本工作过程.webp b/static/images/408/《计网》网络层/OSPF的基本工作过程.webp new file mode 100644 index 0000000..f26f644 Binary files /dev/null and b/static/images/408/《计网》网络层/OSPF的基本工作过程.webp differ diff --git a/static/images/408/《计网》网络层/RIP坏消息传的慢的问题.webp b/static/images/408/《计网》网络层/RIP坏消息传的慢的问题.webp new file mode 100644 index 0000000..5c5cc21 Binary files /dev/null and b/static/images/408/《计网》网络层/RIP坏消息传的慢的问题.webp differ diff --git a/static/images/408/《计网》网络层/RIP基本工作过程.webp b/static/images/408/《计网》网络层/RIP基本工作过程.webp new file mode 100644 index 0000000..83e3c10 Binary files /dev/null and b/static/images/408/《计网》网络层/RIP基本工作过程.webp differ diff --git a/static/images/408/《计网》网络层/RIP基本概念.webp b/static/images/408/《计网》网络层/RIP基本概念.webp new file mode 100644 index 0000000..8f62221 Binary files /dev/null and b/static/images/408/《计网》网络层/RIP基本概念.webp differ diff --git a/static/images/408/《计网》网络层/RIP工作原理.webp b/static/images/408/《计网》网络层/RIP工作原理.webp new file mode 100644 index 0000000..21366b6 Binary files /dev/null and b/static/images/408/《计网》网络层/RIP工作原理.webp differ diff --git a/static/images/408/《计网》网络层/RIP路由条目更新规则.webp b/static/images/408/《计网》网络层/RIP路由条目更新规则.webp new file mode 100644 index 0000000..f765dbd Binary files /dev/null and b/static/images/408/《计网》网络层/RIP路由条目更新规则.webp differ diff --git a/static/images/408/《计网》网络层/一般不使用的IP地址.webp b/static/images/408/《计网》网络层/一般不使用的IP地址.webp new file mode 100644 index 0000000..3a5d655 Binary files /dev/null and b/static/images/408/《计网》网络层/一般不使用的IP地址.webp differ diff --git a/static/images/408/《计网》网络层/不应该发送差错报文的情况.webp b/static/images/408/《计网》网络层/不应该发送差错报文的情况.webp new file mode 100644 index 0000000..d11ee5f Binary files /dev/null and b/static/images/408/《计网》网络层/不应该发送差错报文的情况.webp differ diff --git a/static/images/408/《计网》网络层/五种分组类型.webp b/static/images/408/《计网》网络层/五种分组类型.webp new file mode 100644 index 0000000..3eb5fa2 Binary files /dev/null and b/static/images/408/《计网》网络层/五种分组类型.webp differ diff --git a/static/images/408/《计网》网络层/五种差错报文1.webp b/static/images/408/《计网》网络层/五种差错报文1.webp new file mode 100644 index 0000000..8caae3e Binary files /dev/null and b/static/images/408/《计网》网络层/五种差错报文1.webp differ diff --git a/static/images/408/《计网》网络层/五种差错报文2.webp b/static/images/408/《计网》网络层/五种差错报文2.webp new file mode 100644 index 0000000..1d4111e Binary files /dev/null and b/static/images/408/《计网》网络层/五种差错报文2.webp differ diff --git a/static/images/408/《计网》网络层/五种差错报文3.webp b/static/images/408/《计网》网络层/五种差错报文3.webp new file mode 100644 index 0000000..33c583d Binary files /dev/null and b/static/images/408/《计网》网络层/五种差错报文3.webp differ diff --git a/static/images/408/《计网》网络层/五种差错报文4.webp b/static/images/408/《计网》网络层/五种差错报文4.webp new file mode 100644 index 0000000..9ca266d Binary files /dev/null and b/static/images/408/《计网》网络层/五种差错报文4.webp differ diff --git a/static/images/408/《计网》网络层/五种差错报文5.webp b/static/images/408/《计网》网络层/五种差错报文5.webp new file mode 100644 index 0000000..0881b59 Binary files /dev/null and b/static/images/408/《计网》网络层/五种差错报文5.webp differ diff --git a/static/images/408/《计网》网络层/交互问候分组.webp b/static/images/408/《计网》网络层/交互问候分组.webp new file mode 100644 index 0000000..6f8a2dc Binary files /dev/null and b/static/images/408/《计网》网络层/交互问候分组.webp differ diff --git a/static/images/408/《计网》网络层/例题分类编制的IPV4地址.webp b/static/images/408/《计网》网络层/例题分类编制的IPV4地址.webp new file mode 100644 index 0000000..04e723e Binary files /dev/null and b/static/images/408/《计网》网络层/例题分类编制的IPV4地址.webp differ diff --git a/static/images/408/《计网》网络层/例题划分子网的IPV4地址.webp b/static/images/408/《计网》网络层/例题划分子网的IPV4地址.webp new file mode 100644 index 0000000..656e38a Binary files /dev/null and b/static/images/408/《计网》网络层/例题划分子网的IPV4地址.webp differ diff --git a/static/images/408/《计网》网络层/例题无分类编制的IPV4地址.webp b/static/images/408/《计网》网络层/例题无分类编制的IPV4地址.webp new file mode 100644 index 0000000..3716b10 Binary files /dev/null and b/static/images/408/《计网》网络层/例题无分类编制的IPV4地址.webp differ diff --git a/static/images/408/《计网》网络层/例题路由聚合.webp b/static/images/408/《计网》网络层/例题路由聚合.webp new file mode 100644 index 0000000..f80ddba Binary files /dev/null and b/static/images/408/《计网》网络层/例题路由聚合.webp differ diff --git a/static/images/408/《计网》网络层/公有地址,私有地址.webp b/static/images/408/《计网》网络层/公有地址,私有地址.webp new file mode 100644 index 0000000..20f988b Binary files /dev/null and b/static/images/408/《计网》网络层/公有地址,私有地址.webp differ diff --git a/static/images/408/《计网》网络层/内容总结.webp b/static/images/408/《计网》网络层/内容总结.webp new file mode 100644 index 0000000..30fafe9 Binary files /dev/null and b/static/images/408/《计网》网络层/内容总结.webp differ diff --git a/static/images/408/《计网》网络层/分层次的路由选择协议.webp b/static/images/408/《计网》网络层/分层次的路由选择协议.webp new file mode 100644 index 0000000..806f184 Binary files /dev/null and b/static/images/408/《计网》网络层/分层次的路由选择协议.webp differ diff --git a/static/images/408/《计网》网络层/分类编制的IPV4地址.webp b/static/images/408/《计网》网络层/分类编制的IPV4地址.webp new file mode 100644 index 0000000..3f938e5 Binary files /dev/null and b/static/images/408/《计网》网络层/分类编制的IPV4地址.webp differ diff --git a/static/images/408/《计网》网络层/划分子网的IPV4地址.webp b/static/images/408/《计网》网络层/划分子网的IPV4地址.webp new file mode 100644 index 0000000..40449d5 Binary files /dev/null and b/static/images/408/《计网》网络层/划分子网的IPV4地址.webp differ diff --git a/static/images/408/《计网》网络层/划分子网的IPV4地址2.webp b/static/images/408/《计网》网络层/划分子网的IPV4地址2.webp new file mode 100644 index 0000000..e2389c3 Binary files /dev/null and b/static/images/408/《计网》网络层/划分子网的IPV4地址2.webp differ diff --git a/static/images/408/《计网》网络层/区域.webp b/static/images/408/《计网》网络层/区域.webp new file mode 100644 index 0000000..7f9f186 Binary files /dev/null and b/static/images/408/《计网》网络层/区域.webp differ diff --git a/static/images/408/《计网》网络层/变长的子网掩码1.webp b/static/images/408/《计网》网络层/变长的子网掩码1.webp new file mode 100644 index 0000000..48618a4 Binary files /dev/null and b/static/images/408/《计网》网络层/变长的子网掩码1.webp differ diff --git a/static/images/408/《计网》网络层/变长的子网掩码2.webp b/static/images/408/《计网》网络层/变长的子网掩码2.webp new file mode 100644 index 0000000..c73f2fb Binary files /dev/null and b/static/images/408/《计网》网络层/变长的子网掩码2.webp differ diff --git a/static/images/408/《计网》网络层/定长的子网掩码.webp b/static/images/408/《计网》网络层/定长的子网掩码.webp new file mode 100644 index 0000000..a8bd119 Binary files /dev/null and b/static/images/408/《计网》网络层/定长的子网掩码.webp differ diff --git a/static/images/408/《计网》网络层/特定主机路由.webp b/static/images/408/《计网》网络层/特定主机路由.webp new file mode 100644 index 0000000..1066754 Binary files /dev/null and b/static/images/408/《计网》网络层/特定主机路由.webp differ diff --git a/static/images/408/《计网》网络层/网络地址转换NAT.webp b/static/images/408/《计网》网络层/网络地址转换NAT.webp new file mode 100644 index 0000000..679a7da Binary files /dev/null and b/static/images/408/《计网》网络层/网络地址转换NAT.webp differ diff --git a/static/images/408/《计网》网络层/网络故障而导致的路由环路.webp b/static/images/408/《计网》网络层/网络故障而导致的路由环路.webp new file mode 100644 index 0000000..af4e3ad Binary files /dev/null and b/static/images/408/《计网》网络层/网络故障而导致的路由环路.webp differ diff --git a/static/images/408/《计网》网络层/聚合不存在的网络而导致的路由环路.webp b/static/images/408/《计网》网络层/聚合不存在的网络而导致的路由环路.webp new file mode 100644 index 0000000..2165252 Binary files /dev/null and b/static/images/408/《计网》网络层/聚合不存在的网络而导致的路由环路.webp differ diff --git a/static/images/408/《计网》网络层/虚拟专用网VPN.webp b/static/images/408/《计网》网络层/虚拟专用网VPN.webp new file mode 100644 index 0000000..a59babd Binary files /dev/null and b/static/images/408/《计网》网络层/虚拟专用网VPN.webp differ diff --git a/static/images/408/《计网》网络层/计算最短路径的过程.webp b/static/images/408/《计网》网络层/计算最短路径的过程.webp new file mode 100644 index 0000000..4f1e49a Binary files /dev/null and b/static/images/408/《计网》网络层/计算最短路径的过程.webp differ diff --git a/static/images/408/《计网》网络层/路由器的组成.webp b/static/images/408/《计网》网络层/路由器的组成.webp new file mode 100644 index 0000000..316b964 Binary files /dev/null and b/static/images/408/《计网》网络层/路由器的组成.webp differ diff --git a/static/images/408/《计网》网络层/路由器转发IP数据报.webp b/static/images/408/《计网》网络层/路由器转发IP数据报.webp new file mode 100644 index 0000000..61df1d8 Binary files /dev/null and b/static/images/408/《计网》网络层/路由器转发IP数据报.webp differ diff --git a/static/images/408/《计网》网络层/路由聚合.webp b/static/images/408/《计网》网络层/路由聚合.webp new file mode 100644 index 0000000..8910a68 Binary files /dev/null and b/static/images/408/《计网》网络层/路由聚合.webp differ diff --git a/static/images/408/《计网》网络层/路由表.webp b/static/images/408/《计网》网络层/路由表.webp new file mode 100644 index 0000000..dc299fe Binary files /dev/null and b/static/images/408/《计网》网络层/路由表.webp differ diff --git a/static/images/408/《计网》网络层/路由选择.webp b/static/images/408/《计网》网络层/路由选择.webp new file mode 100644 index 0000000..32cfffd Binary files /dev/null and b/static/images/408/《计网》网络层/路由选择.webp differ diff --git a/static/images/408/《计网》网络层/路由选择协议汇总.webp b/static/images/408/《计网》网络层/路由选择协议汇总.webp new file mode 100644 index 0000000..8ea8fdb Binary files /dev/null and b/static/images/408/《计网》网络层/路由选择协议汇总.webp differ diff --git a/static/images/408/《计网》网络层/边界网关协议BGP的工作原理.webp b/static/images/408/《计网》网络层/边界网关协议BGP的工作原理.webp new file mode 100644 index 0000000..64af360 Binary files /dev/null and b/static/images/408/《计网》网络层/边界网关协议BGP的工作原理.webp differ diff --git a/static/images/408/《计网》网络层/链路的代价.webp b/static/images/408/《计网》网络层/链路的代价.webp new file mode 100644 index 0000000..cbf2b3b Binary files /dev/null and b/static/images/408/《计网》网络层/链路的代价.webp differ diff --git a/static/images/408/《计网》网络层/静态路由配置.webp b/static/images/408/《计网》网络层/静态路由配置.webp new file mode 100644 index 0000000..af8fe0c Binary files /dev/null and b/static/images/408/《计网》网络层/静态路由配置.webp differ diff --git a/static/images/408/《计网》网络层/静态路由配置错误导致路由环路.webp b/static/images/408/《计网》网络层/静态路由配置错误导致路由环路.webp new file mode 100644 index 0000000..ab40444 Binary files /dev/null and b/static/images/408/《计网》网络层/静态路由配置错误导致路由环路.webp differ diff --git a/static/images/408/《计网》网络层/首部内容.webp b/static/images/408/《计网》网络层/首部内容.webp new file mode 100644 index 0000000..865b440 Binary files /dev/null and b/static/images/408/《计网》网络层/首部内容.webp differ diff --git a/static/images/408/《计网》计算机网络体系结构/OSI七层模型.webp b/static/images/408/《计网》计算机网络体系结构/OSI七层模型.webp new file mode 100644 index 0000000..bcbae70 Binary files /dev/null and b/static/images/408/《计网》计算机网络体系结构/OSI七层模型.webp differ diff --git a/static/images/408/《计网》计算机网络体系结构/TCPIP结构.webp b/static/images/408/《计网》计算机网络体系结构/TCPIP结构.webp new file mode 100644 index 0000000..486bfd4 Binary files /dev/null and b/static/images/408/《计网》计算机网络体系结构/TCPIP结构.webp differ diff --git a/static/images/408/《计网》计算机网络体系结构/三者的对比.webp b/static/images/408/《计网》计算机网络体系结构/三者的对比.webp new file mode 100644 index 0000000..2e1ab54 Binary files /dev/null and b/static/images/408/《计网》计算机网络体系结构/三者的对比.webp differ diff --git a/static/images/408/《计网》计算机网络体系结构/主机通信过程.webp b/static/images/408/《计网》计算机网络体系结构/主机通信过程.webp new file mode 100644 index 0000000..bcbae70 Binary files /dev/null and b/static/images/408/《计网》计算机网络体系结构/主机通信过程.webp differ diff --git a/static/images/408/《计网》计算机网络体系结构/五层协议结构.webp b/static/images/408/《计网》计算机网络体系结构/五层协议结构.webp new file mode 100644 index 0000000..81b669c Binary files /dev/null and b/static/images/408/《计网》计算机网络体系结构/五层协议结构.webp differ diff --git a/static/images/408/《计网》计算机网络体系结构/实体协议图示.webp b/static/images/408/《计网》计算机网络体系结构/实体协议图示.webp new file mode 100644 index 0000000..ddcbd10 Binary files /dev/null and b/static/images/408/《计网》计算机网络体系结构/实体协议图示.webp differ