mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-23 14:08:37 -05:00
just push
This commit is contained in:
parent
d424e465c4
commit
ea24af6f13
85
content/360t7.md
Normal file
85
content/360t7.md
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
+++
|
||||||
|
title = "综合工程:360T7刷ImmortalWrt"
|
||||||
|
date = 2024-09-24
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
tags = ["综合工程"]
|
||||||
|
+++
|
||||||
|
|
||||||
|
前言 上周花了四天成功的将一台 360T7 AX3000 路由器刷成ImmortalWrt系统,并用上了无线校园网,其中之艰辛前所未见。。。
|
||||||
|
|
||||||
|
<!-- more -->
|
||||||
|
|
||||||
|
## 序章
|
||||||
|
|
||||||
|
这一切都得从9月17日我在闲鱼上看到一台360T7说起:正值中秋假期,早上吃完饭看了看闲鱼,突然发现同城有一台仅售60元的360T7路由器,距离我3.4公里——要知道360T7可是AX3000的Wi-Fi6路由器,信号强劲,买60性价比简直无敌。正好缺一个路由器,准备前往购买——
|
||||||
|
|
||||||
|
> 错误一:没有事先详细了解这款机型的情况,以为刷OP非常容易
|
||||||
|
|
||||||
|
于是说干就干,坐上地铁飞驰到达,卖家发了一个开机视频,一切正常,拿上路由器就回学校;
|
||||||
|
|
||||||
|
## 初见端倪
|
||||||
|
|
||||||
|
等到下午1点,准备开干。这款机型没有SSH权限和USB口,我提前准备好了ttl模块(CH341)以及杜邦线,现在准备拆机并进行串口调试;
|
||||||
|
首先是极其结实的外壳,里面有8处卡扣,非常容易损坏;好在笔者手法过硬,没有出现各教程中卡扣裂开的情形。但刚刚打开外壳的一瞬间我就发现事情的不对:``主板上四个圆形串口是有焊锡的``,这下可如何是好?
|
||||||
|
|
||||||
|
> 错误二:大力出奇迹把串口撬开
|
||||||
|
|
||||||
|
这时候我想到焊锡并不结实,直接用小刀或针刮开即可,于是经过半小时四条杜邦线已经顺利的接上串口,电脑的COM3口也成功访问到;然而离谱的事情发生了:``COM3口没有任何跑码数据显示,一片空白``,这下坏事了。到底是怎么回事呢?有以下几种可能:
|
||||||
|
|
||||||
|
- CPU天生不跑码(极其罕见,需要换CPU)
|
||||||
|
- COM口的波比特率错误(96000?115200?)
|
||||||
|
- 串口连接错误(RTX,TDX,GND的顺序?)
|
||||||
|
- 接触不良(得上电烙铁)
|
||||||
|
|
||||||
|
经过排除变量,前三条已经确认无误,那么,接触不良该怎么办呢?于是我在外卖平台``买了一个电烙铁``,此时已经下午6点...
|
||||||
|
|
||||||
|
## 成为电焊高手
|
||||||
|
|
||||||
|
此时,我的另一位好友抗性面包(以下简称K老师)出现了,并打算和我一起``将杜邦线焊接到串口上``。然而,并不熟悉的操作让我们险象环生:首先是焊锡不容易成形,加上了助焊剂松香又出现一大堆烟雾,宿舍一时间烟雾缭绕( 随即我们将电焊枪开到了400度,在成功焊上一个点之后我将焊枪放在了鼠标垫上。。。
|
||||||
|
|
||||||
|
> 错误三:没有焊枪架
|
||||||
|
|
||||||
|
于是``鼠标垫被烫出一个大洞``。。。不过好在经过焊接,ttl跑码界面已经成功出现,此时似乎离成功只有一步之遥——
|
||||||
|
|
||||||
|
## 噩梦的开始
|
||||||
|
|
||||||
|
于是我和K老师大喜,直接找了一个教程,发现这个型号得降级安装,于是``安装了github上名为360t7-upgrade的一个bin包``,然后问题就大了:现在系统连不上了😨😨😨
|
||||||
|
|
||||||
|
> 错误四:看都不看就刷进来历不明的包
|
||||||
|
|
||||||
|
## 希望与绝望
|
||||||
|
|
||||||
|
此时K老师和我有点麻,运气这么好让我们刷到不匹配的包,随后发现``360T7有数个版本,手上的这个版本是Nand闪存``,所以现有的包不能适用。。此时我想到可以通过原厂固件刷回来救,但问题来了:我没有备份这个机型的固件
|
||||||
|
|
||||||
|
> 错误五:没有提前备份这个机型的固件
|
||||||
|
|
||||||
|
难道只能上编程器救砖?
|
||||||
|
|
||||||
|
经过仔细研究,发现``mtk的芯片可以使用名为mtk_boot的工具进入类似fastboot的界面救砖``,而360T7正是用的mtk7981芯片。又经过艰难的一番操作,终于刷入了一个可以使用的Uboot;但这个Uboot又出现了可怕😨的问题:``系统无限循环,报错 bad_block !!!``而我们此时并不知道分区表的偏移量,无法进行操作。
|
||||||
|
|
||||||
|
这是怎么回事?难道内存已经坏块了?
|
||||||
|
|
||||||
|
此时时间已晚,不得不先休息,第一天过去了。。。
|
||||||
|
|
||||||
|
## 第二天
|
||||||
|
|
||||||
|
第二天的晚上我和K老师再度开始折腾这个路由器;我认为☝️``内存应该是没有真正坏块``,于是又又又经过查阅恩山论坛和各处博客,终于发现的问题的关键:应该先``刷bl2,fip和ubi分区``,于是我们用了新的uboot,但新问题又又又又出现了:mtd命令``无法操作bl2,fip和ubi分区``,这是怎么一回事?
|
||||||
|
|
||||||
|
又又又经过查阅恩山论坛和各处博客,发现该108M大分区表是锁分区的,不能直接操作,于是经过一番查找``使用了 Kmod 模块解锁了分区表``并刷入了bl2和fip,似乎要好起来了😭,但此时无形的大手再一次愚弄了我们:系统``依然无限循环bad_block``。。于是现在我们强行刷入ImmortalWrt系统是可以的,但``它只能运行在内存之中,一断电就会消逝``😭 总不能让它一直在内存里面跑吧。。
|
||||||
|
|
||||||
|
此时时间已晚,不得不先休息,第二天过去了。。。
|
||||||
|
|
||||||
|
> 致敬传奇liveCD跑server的运维大师🫡
|
||||||
|
|
||||||
|
## 第三天
|
||||||
|
|
||||||
|
第三天晚上,我和K老师都有点疲惫,现在无限循环bad_block的报错还未解决,是umbm导致的,在检测到坏块后会报错;然而实际上我们的路由器并没有真正坏块,是在刷入固件的时候导致了尾部的分区错误,随即受到了umbm的制约。现在我们``要么刷一个支持umbm的系统,要么刷一个支持umbm的uboot,要么想办法关闭umbm``,于是K老师编译了一个ImmortalWrt固件并刷了进去,但此时由于前面刷错了bl2,检验依然没有通过。。
|
||||||
|
|
||||||
|
此时时间已晚,不得不先休息,第三天过去了。。。
|
||||||
|
|
||||||
|
## 第四天
|
||||||
|
|
||||||
|
神奇的事情发生了:K老师成功刷入了ImmortalWrt,终于😭😭😭😭,随即我们在ubuntu虚拟机中``编译了C语言写就的 inyn 校园网客户端``,并通过SSH将ipk安装到了ImmortalWrt之上,但此时``报错缺库``。。。又是一顿焦头烂额,最后K老师使用了Go版本的 nyn 解决了问题,我终于用上了无线校园网😭实际测试T7性能非常强大,信号强劲,支持Hnat硬件加速和多路复用,速度轻松跑到800兆。
|
||||||
|
|
||||||
|
Done.
|
194
public/360t7/index.html
Normal file
194
public/360t7/index.html
Normal file
@ -0,0 +1,194 @@
|
|||||||
|
<!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=1">
|
||||||
|
<meta name="robots" content="noodp"/>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://blog.dich.bid/style.css">
|
||||||
|
<link rel="stylesheet" href="https://blog.dich.bid/color/blue.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://blog.dich.bid/color/background_dark.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://blog.dich.bid/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.bid/360t7/">
|
||||||
|
|
||||||
|
<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.bid">
|
||||||
|
<meta property="twitter:url" content="https://blog.dich.bid/360t7/">
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/atom+xml" title="Dich'blog Atom Feed" href="https://blog.dich.bid/atom.xml" />
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="">
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
<div class="header__inner">
|
||||||
|
<div class="header__logo">
|
||||||
|
|
||||||
|
<a href="https://blog.dich.bid" 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.bid">blog</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://blog.dich.bid/tags">tags</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://blog.dich.bid/archive">archive</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://blog.dich.bid/about">about me</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://blog.dich.bid/links">links</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://blog.dich.bid/search">search</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.bid/360t7/">综合工程:360T7刷ImmortalWrt</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-09-24
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 上周花了四天成功的将一台 360T7 AX3000 路由器刷成ImmortalWrt系统,并用上了无线校园网,其中之艰辛前所未见。。。</p>
|
||||||
|
<span id="continue-reading"></span><h2 id="xu-zhang">序章</h2>
|
||||||
|
<p>这一切都得从9月17日我在闲鱼上看到一台360T7说起:正值中秋假期,早上吃完饭看了看闲鱼,突然发现同城有一台仅售60元的360T7路由器,距离我3.4公里——要知道360T7可是AX3000的Wi-Fi6路由器,信号强劲,买60性价比简直无敌。正好缺一个路由器,准备前往购买——</p>
|
||||||
|
<blockquote>
|
||||||
|
<p>错误一:没有事先详细了解这款机型的情况,以为刷OP非常容易</p>
|
||||||
|
</blockquote>
|
||||||
|
<p>于是说干就干,坐上地铁飞驰到达,卖家发了一个开机视频,一切正常,拿上路由器就回学校;</p>
|
||||||
|
<h2 id="chu-jian-duan-ni">初见端倪</h2>
|
||||||
|
<p>等到下午1点,准备开干。这款机型没有SSH权限和USB口,我提前准备好了ttl模块(CH341)以及杜邦线,现在准备拆机并进行串口调试;
|
||||||
|
首先是极其结实的外壳,里面有8处卡扣,非常容易损坏;好在笔者手法过硬,没有出现各教程中卡扣裂开的情形。但刚刚打开外壳的一瞬间我就发现事情的不对:<code>主板上四个圆形串口是有焊锡的</code>,这下可如何是好?</p>
|
||||||
|
<blockquote>
|
||||||
|
<p>错误二:大力出奇迹把串口撬开</p>
|
||||||
|
</blockquote>
|
||||||
|
<p>这时候我想到焊锡并不结实,直接用小刀或针刮开即可,于是经过半小时四条杜邦线已经顺利的接上串口,电脑的COM3口也成功访问到;然而离谱的事情发生了:<code>COM3口没有任何跑码数据显示,一片空白</code>,这下坏事了。到底是怎么回事呢?有以下几种可能:</p>
|
||||||
|
<ul>
|
||||||
|
<li>CPU天生不跑码(极其罕见,需要换CPU)</li>
|
||||||
|
<li>COM口的波比特率错误(96000?115200?)</li>
|
||||||
|
<li>串口连接错误(RTX,TDX,GND的顺序?)</li>
|
||||||
|
<li>接触不良(得上电烙铁)</li>
|
||||||
|
</ul>
|
||||||
|
<p>经过排除变量,前三条已经确认无误,那么,接触不良该怎么办呢?于是我在外卖平台<code>买了一个电烙铁</code>,此时已经下午6点...</p>
|
||||||
|
<h2 id="cheng-wei-dian-han-gao-shou">成为电焊高手</h2>
|
||||||
|
<p>此时,我的另一位好友抗性面包(以下简称K老师)出现了,并打算和我一起<code>将杜邦线焊接到串口上</code>。然而,并不熟悉的操作让我们险象环生:首先是焊锡不容易成形,加上了助焊剂松香又出现一大堆烟雾,宿舍一时间烟雾缭绕( 随即我们将电焊枪开到了400度,在成功焊上一个点之后我将焊枪放在了鼠标垫上。。。</p>
|
||||||
|
<blockquote>
|
||||||
|
<p>错误三:没有焊枪架</p>
|
||||||
|
</blockquote>
|
||||||
|
<p>于是<code>鼠标垫被烫出一个大洞</code>。。。不过好在经过焊接,ttl跑码界面已经成功出现,此时似乎离成功只有一步之遥——</p>
|
||||||
|
<h2 id="e-meng-de-kai-shi">噩梦的开始</h2>
|
||||||
|
<p>于是我和K老师大喜,直接找了一个教程,发现这个型号得降级安装,于是<code>安装了github上名为360t7-upgrade的一个bin包</code>,然后问题就大了:现在系统连不上了😨😨😨</p>
|
||||||
|
<blockquote>
|
||||||
|
<p>错误四:看都不看就刷进来历不明的包</p>
|
||||||
|
</blockquote>
|
||||||
|
<h2 id="xi-wang-yu-jue-wang">希望与绝望</h2>
|
||||||
|
<p>此时K老师和我有点麻,运气这么好让我们刷到不匹配的包,随后发现<code>360T7有数个版本,手上的这个版本是Nand闪存</code>,所以现有的包不能适用。。此时我想到可以通过原厂固件刷回来救,但问题来了:我没有备份这个机型的固件</p>
|
||||||
|
<blockquote>
|
||||||
|
<p>错误五:没有提前备份这个机型的固件</p>
|
||||||
|
</blockquote>
|
||||||
|
<p>难道只能上编程器救砖?</p>
|
||||||
|
<p>经过仔细研究,发现<code>mtk的芯片可以使用名为mtk_boot的工具进入类似fastboot的界面救砖</code>,而360T7正是用的mtk7981芯片。又经过艰难的一番操作,终于刷入了一个可以使用的Uboot;但这个Uboot又出现了可怕😨的问题:<code>系统无限循环,报错 bad_block !!!</code>而我们此时并不知道分区表的偏移量,无法进行操作。</p>
|
||||||
|
<p>这是怎么回事?难道内存已经坏块了?</p>
|
||||||
|
<p>此时时间已晚,不得不先休息,第一天过去了。。。</p>
|
||||||
|
<h2 id="di-er-tian">第二天</h2>
|
||||||
|
<p>第二天的晚上我和K老师再度开始折腾这个路由器;我认为☝️<code>内存应该是没有真正坏块</code>,于是又又又经过查阅恩山论坛和各处博客,终于发现的问题的关键:应该先<code>刷bl2,fip和ubi分区</code>,于是我们用了新的uboot,但新问题又又又又出现了:mtd命令<code>无法操作bl2,fip和ubi分区</code>,这是怎么一回事?</p>
|
||||||
|
<p>又又又经过查阅恩山论坛和各处博客,发现该108M大分区表是锁分区的,不能直接操作,于是经过一番查找<code>使用了 Kmod 模块解锁了分区表</code>并刷入了bl2和fip,似乎要好起来了😭,但此时无形的大手再一次愚弄了我们:系统<code>依然无限循环bad_block</code>。。于是现在我们强行刷入ImmortalWrt系统是可以的,但<code>它只能运行在内存之中,一断电就会消逝</code>😭 总不能让它一直在内存里面跑吧。。</p>
|
||||||
|
<p>此时时间已晚,不得不先休息,第二天过去了。。。</p>
|
||||||
|
<blockquote>
|
||||||
|
<p>致敬传奇liveCD跑server的运维大师🫡</p>
|
||||||
|
</blockquote>
|
||||||
|
<h2 id="di-san-tian">第三天</h2>
|
||||||
|
<p>第三天晚上,我和K老师都有点疲惫,现在无限循环bad_block的报错还未解决,是umbm导致的,在检测到坏块后会报错;然而实际上我们的路由器并没有真正坏块,是在刷入固件的时候导致了尾部的分区错误,随即受到了umbm的制约。现在我们<code>要么刷一个支持umbm的系统,要么刷一个支持umbm的uboot,要么想办法关闭umbm</code>,于是K老师编译了一个ImmortalWrt固件并刷了进去,但此时由于前面刷错了bl2,检验依然没有通过。。</p>
|
||||||
|
<p>此时时间已晚,不得不先休息,第三天过去了。。。</p>
|
||||||
|
<h2 id="di-si-tian">第四天</h2>
|
||||||
|
<p>神奇的事情发生了:K老师成功刷入了ImmortalWrt,终于😭😭😭😭,随即我们在ubuntu虚拟机中<code>编译了C语言写就的 inyn 校园网客户端</code>,并通过SSH将ipk安装到了ImmortalWrt之上,但此时<code>报错缺库</code>。。。又是一顿焦头烂额,最后K老师使用了Go版本的 nyn 解决了问题,我终于用上了无线校园网😭实际测试T7性能非常强大,信号强劲,支持Hnat硬件加速和多路复用,速度轻松跑到800兆。</p>
|
||||||
|
<p>Done.</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.bid/zhoubao-15/">
|
||||||
|
<span class="button__icon">←</span>
|
||||||
|
<span class="button__text">谈天说地:狄奇周刊(十五)</span>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
<div class="copyright">
|
||||||
|
<span>©
|
||||||
|
2024
|
||||||
|
Dichgrem</span>
|
||||||
|
<span class="copyright-theme">
|
||||||
|
<span class="copyright-theme-sep">:: </span>
|
||||||
|
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -82,6 +82,16 @@
|
|||||||
|
|
||||||
|
|
||||||
<ul><li class="post-list">
|
<ul><li class="post-list">
|
||||||
|
<a href="https://blog.dich.bid/360t7/">
|
||||||
|
<span class="post-date">2024-09-24</span>
|
||||||
|
:: <span class="post-list-title">综合工程:360T7刷ImmortalWrt</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.bid/zhoubao-15/">
|
<a href="https://blog.dich.bid/zhoubao-15/">
|
||||||
<span class="post-date">2024-09-21</span>
|
<span class="post-date">2024-09-21</span>
|
||||||
:: <span class="post-list-title">谈天说地:狄奇周刊(十五)</span></a>
|
:: <span class="post-list-title">谈天说地:狄奇周刊(十五)</span></a>
|
||||||
|
@ -5,8 +5,28 @@
|
|||||||
<link rel="self" type="application/atom+xml" href="https://blog.dich.bid/atom.xml"/>
|
<link rel="self" type="application/atom+xml" href="https://blog.dich.bid/atom.xml"/>
|
||||||
<link rel="alternate" type="text/html" href="https://blog.dich.bid"/>
|
<link rel="alternate" type="text/html" href="https://blog.dich.bid"/>
|
||||||
<generator uri="https://www.getzola.org/">Zola</generator>
|
<generator uri="https://www.getzola.org/">Zola</generator>
|
||||||
<updated>2024-09-21T00:00:00+00:00</updated>
|
<updated>2024-09-24T00:00:00+00:00</updated>
|
||||||
<id>https://blog.dich.bid/atom.xml</id>
|
<id>https://blog.dich.bid/atom.xml</id>
|
||||||
|
<entry xml:lang="en">
|
||||||
|
<title>综合工程:360T7刷ImmortalWrt</title>
|
||||||
|
<published>2024-09-24T00:00:00+00:00</published>
|
||||||
|
<updated>2024-09-24T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
<author>
|
||||||
|
<name>
|
||||||
|
|
||||||
|
Unknown
|
||||||
|
|
||||||
|
</name>
|
||||||
|
</author>
|
||||||
|
|
||||||
|
<link rel="alternate" type="text/html" href="https://blog.dich.bid/360t7/"/>
|
||||||
|
<id>https://blog.dich.bid/360t7/</id>
|
||||||
|
|
||||||
|
<summary type="html"><p>前言 上周花了四天成功的将一台 360T7 AX3000 路由器刷成ImmortalWrt系统,并用上了无线校园网,其中之艰辛前所未见。。。</p>
|
||||||
|
</summary>
|
||||||
|
|
||||||
|
</entry>
|
||||||
<entry xml:lang="en">
|
<entry xml:lang="en">
|
||||||
<title>谈天说地:狄奇周刊(十五)</title>
|
<title>谈天说地:狄奇周刊(十五)</title>
|
||||||
<published>2024-09-21T00:00:00+00:00</published>
|
<published>2024-09-21T00:00:00+00:00</published>
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/360t7/">综合工程:360T7刷ImmortalWrt</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-09-24
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 上周花了四天成功的将一台 360T7 AX3000 路由器刷成ImmortalWrt系统,并用上了无线校园网,其中之艰辛前所未见。。。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/360t7/">
|
||||||
|
<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.bid/zhoubao-15/">谈天说地:狄奇周刊(十五)</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/zhoubao-15/">谈天说地:狄奇周刊(十五)</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/zhoubao-11/">谈天说地:狄奇周刊(十一)</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-08-22
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/tan-tian-shuo-di/">#谈天说地</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 这里是Dich的周刊,通过博客的形式讲述每周互联网形势,以及分享一些文章。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/zhoubao-11/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/about-working/">乱七八糟:应届生工作指南</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-12-27
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</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.bid/about-working/">
|
||||||
|
<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.bid/git/">乱七八糟:Git使用简明手册</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/git/">乱七八糟:Git使用简明手册</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单/开机启动/关闭更新</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2023-08-26
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 Windows操作系统作为全球最为普及的桌面操作系统之一,其用户界面的设计非常经典;而win11中的二级菜单令人感到无语,本文教你回到一级菜单。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/windows-some-setting/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/windows-some-setting/">乱七八糟:Windows单级菜单/开机启动/关闭更新</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-08-26
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 Windows操作系统作为全球最为普及的桌面操作系统之一,其用户界面的设计非常经典;而win11中的二级菜单令人感到无语,本文教你回到一级菜单。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/windows-some-setting/">
|
||||||
|
<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.bid/accurate-pronunciation/">乱七八糟:常见发音错误术语集合</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/accurate-pronunciation/">乱七八糟:常见发音错误术语集合</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-nas-dsm/">综合工程:黑群辉NAS极速安装</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2023-08-17
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 作为NAS家族中的重要一员,Synology的DSM以完善的服务和较高的售价闻名于世,因此,一般玩家倾向于工控机加黑群晖的方案组建自己的文件服务器。本文就黑群辉安装做了详细阐述。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/awesome-nas-dsm/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/awesome-nas-dsm/">综合工程:黑群辉NAS极速安装</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-08-17
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 作为NAS家族中的重要一员,Synology的DSM以完善的服务和较高的售价闻名于世,因此,一般玩家倾向于工控机加黑群晖的方案组建自己的文件服务器。本文就黑群辉安装做了详细阐述。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/awesome-nas-dsm/">
|
||||||
|
<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.bid/awesome-arch-linux/">综合工程:Arch从入门到入土</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-arch-linux/">综合工程:Arch从入门到入土</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -212,40 +246,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-openwrt/">综合工程:OpenWrt 软路由部署</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2023-08-12
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 openwrt 是一个自由的、兼容性好的嵌入式 linux 发行版。作为软路由玩家必备的一款神器,可以实现诸如去广告,多拨和科学上网等多种功能。本文以 openwrt 在X86平台的安装为例,介绍其部署流程。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/awesome-openwrt/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/awesome-openwrt/">综合工程:OpenWrt 软路由部署</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2023-08-12
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 openwrt 是一个自由的、兼容性好的嵌入式 linux 发行版。作为软路由玩家必备的一款神器,可以实现诸如去广告,多拨和科学上网等多种功能。本文以 openwrt 在X86平台的安装为例,介绍其部署流程。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/awesome-openwrt/">
|
||||||
|
<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.bid/awesome-pve-mcsm/">综合工程:PVE安装与MC服务器搭建</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-pve-mcsm/">综合工程:PVE安装与MC服务器搭建</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/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.bid/tags/linux/">#Linux</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.bid/linux-for-pc-3/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/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.bid/tags/linux/">#Linux</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.bid/linux-for-pc-3/">
|
||||||
|
<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.bid/linux-for-pc-2/">Linux-For-PC(二):FHS与目录结构</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/linux-for-pc-2/">Linux-For-PC(二):FHS与目录结构</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/zhoubao-11/">谈天说地:狄奇周刊(十一)</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-08-22
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/tan-tian-shuo-di/">#谈天说地</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 这里是Dich的周刊,通过博客的形式讲述每周互联网形势,以及分享一些文章。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/zhoubao-11/">
|
||||||
|
<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.bid/zhoubao-10/">谈天说地:狄奇周刊(十)</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/zhoubao-10/">谈天说地:狄奇周刊(十)</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/zhoubao-6/">谈天说地:狄奇周刊(六)</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-07-18
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/tan-tian-shuo-di/">#谈天说地</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 这里是Dich的周刊,通过博客的形式讲述每周互联网形势,以及分享一些文章,每周四更新.</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/zhoubao-6/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/zhoubao-6/">谈天说地:狄奇周刊(六)</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-07-18
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/tan-tian-shuo-di/">#谈天说地</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 这里是Dich的周刊,通过博客的形式讲述每周互联网形势,以及分享一些文章,每周四更新.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/zhoubao-6/">
|
||||||
|
<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.bid/zhoubao-5/">谈天说地:狄奇周刊(五)</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/zhoubao-5/">谈天说地:狄奇周刊(五)</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/zhoubao-1/">谈天说地:狄奇周刊(一)</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-06-13
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/tan-tian-shuo-di/">#谈天说地</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 这里是Dich的周刊,通过博客的形式讲述每周互联网形势,以及分享一些文章,暂定每周四进行更新.</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/zhoubao-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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/zhoubao-1/">谈天说地:狄奇周刊(一)</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-06-13
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/tan-tian-shuo-di/">#谈天说地</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 这里是Dich的周刊,通过博客的形式讲述每周互联网形势,以及分享一些文章,暂定每周四进行更新.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/zhoubao-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.bid/about-runer-2/">乱七八糟:跑步笔记(二)</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/about-runer-2/">乱七八糟:跑步笔记(二)</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/windows-optimization/">乱七八糟:Windows优化流程</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-05-26
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 由于厂商默认安装windows家庭版导致各种问题频发,这里对widnows优化流程做一个总结.</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/windows-optimization/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/windows-optimization/">乱七八糟:Windows优化流程</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-05-26
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 由于厂商默认安装windows家庭版导致各种问题频发,这里对widnows优化流程做一个总结.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/windows-optimization/">
|
||||||
|
<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.bid/chrome-shortcut-key/">乱七八糟:Chrome常用快捷键</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/chrome-shortcut-key/">乱七八糟:Chrome常用快捷键</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-7/">Docker学习笔记(七)</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-03-31
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 容器镜像仓库是 Docker 容器镜像的集中存储和分发系统。它允许开发人员以这些映像的形式轻松共享和部署应用程序。容器镜像仓库在容器化应用程序的部署中起着至关重要的作用,因为它们提供了一种快速、可靠且安全的方式来跨各种生产环境分发容器映像。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/docker-learn-7/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/docker-learn-7/">Docker学习笔记(七)</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-03-31
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 容器镜像仓库是 Docker 容器镜像的集中存储和分发系统。它允许开发人员以这些映像的形式轻松共享和部署应用程序。容器镜像仓库在容器化应用程序的部署中起着至关重要的作用,因为它们提供了一种快速、可靠且安全的方式来跨各种生产环境分发容器映像。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/docker-learn-7/">
|
||||||
|
<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.bid/docker-learn-6/">Docker学习笔记(六)</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-6/">Docker学习笔记(六)</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-2/">Docker学习笔记(二)</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-03-26
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="post-content">
|
|
||||||
<p>前言 了解支持 Docker 的核心技术将有助于更深入地了解 Docker 的工作原理,并更有效地使用该平台。</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
|
||||||
<a class="read-more button" href="https://blog.dich.bid/docker-learn-2/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/docker-learn-2/">Docker学习笔记(二)</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-03-26
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<p>前言 了解支持 Docker 的核心技术将有助于更深入地了解 Docker 的工作原理,并更有效地使用该平台。</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
|
<a class="read-more button" href="https://blog.dich.bid/docker-learn-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.bid/docker-learn-1/">Docker学习笔记(一)</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-1/">Docker学习笔记(一)</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/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.bid/tags/kai-yuan-shi-jie/">#开源世界</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.bid/opensourcesoftware-licenses/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/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.bid/tags/kai-yuan-shi-jie/">#开源世界</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.bid/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.bid/open-source-cross-platform-softs/">开源世界:有关开源的误区</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/open-source-cross-platform-softs/">开源世界:有关开源的误区</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/routing/">Network的艺术:路由器原理与组网</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2024-02-19
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/wang-luo-yi-shu/">#网络艺术</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.bid/routing/">
|
|
||||||
<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">
|
||||||
|
@ -79,6 +79,40 @@
|
|||||||
<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.bid/routing/">Network的艺术:路由器原理与组网</a></h1>
|
||||||
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
|
<span class="post-date">
|
||||||
|
2024-02-19
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
:: tags:
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/wang-luo-yi-shu/">#网络艺术</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.bid/routing/">
|
||||||
|
<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.bid/searching/">Network的艺术:搜索引擎与爬虫</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/searching/">Network的艺术:搜索引擎与爬虫</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
@ -211,40 +245,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="post on-list">
|
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/about-working/">乱七八糟:应届生工作指南</a></h1>
|
|
||||||
<div class="post-meta-inline">
|
|
||||||
|
|
||||||
<span class="post-date">
|
|
||||||
2023-12-27
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
|
||||||
:: tags:
|
|
||||||
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</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.bid/about-working/">
|
|
||||||
<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">
|
||||||
|
BIN
public/pagefind/fragment/en_116bb98.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_116bb98.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_339368e.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_339368e.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_4143628.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_4143628.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_4172ecd.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_4172ecd.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_5226573.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_5226573.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_5bae61a.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_5bae61a.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_5fa073c.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_5fa073c.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_8429b8d.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_8429b8d.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_8b37617.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_8b37617.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_94bd548.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_94bd548.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_9bdd22b.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_9bdd22b.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_9ee6ff9.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_9ee6ff9.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_ac296c7.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_ac296c7.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_cd6fc57.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_cd6fc57.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_cf52c49.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_cf52c49.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_d880108.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_d880108.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_dc3b311.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_dc3b311.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_dc3fe64.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_dc3fe64.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_f5ff4a7.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_f5ff4a7.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_f71c9df.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_f71c9df.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/index/en_453ae5f.pf_index
Normal file
BIN
public/pagefind/index/en_453ae5f.pf_index
Normal file
Binary file not shown.
BIN
public/pagefind/index/en_665b59e.pf_index
Normal file
BIN
public/pagefind/index/en_665b59e.pf_index
Normal file
Binary file not shown.
BIN
public/pagefind/index/en_6dcd2ee.pf_index
Normal file
BIN
public/pagefind/index/en_6dcd2ee.pf_index
Normal file
Binary file not shown.
BIN
public/pagefind/index/en_7e986b2.pf_index
Normal file
BIN
public/pagefind/index/en_7e986b2.pf_index
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
{"version":"1.1.1","languages":{"en":{"hash":"en_eb8e2872dd","wasm":"en","page_count":100}}}
|
{"version":"1.1.1","languages":{"en":{"hash":"en_e480574fd5","wasm":"en","page_count":101}}}
|
BIN
public/pagefind/pagefind.en_e480574fd5.pf_meta
Normal file
BIN
public/pagefind/pagefind.en_e480574fd5.pf_meta
Normal file
Binary file not shown.
Binary file not shown.
@ -3,6 +3,10 @@
|
|||||||
<url>
|
<url>
|
||||||
<loc>https://blog.dich.bid/</loc>
|
<loc>https://blog.dich.bid/</loc>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://blog.dich.bid/360t7/</loc>
|
||||||
|
<lastmod>2024-09-24</lastmod>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://blog.dich.bid/about-bilibili/</loc>
|
<loc>https://blog.dich.bid/about-bilibili/</loc>
|
||||||
<lastmod>2024-05-31</lastmod>
|
<lastmod>2024-05-31</lastmod>
|
||||||
|
@ -121,7 +121,7 @@
|
|||||||
|
|
||||||
<li class="tag-list">
|
<li class="tag-list">
|
||||||
<a href="https://blog.dich.bid/tags/zong-he-gong-cheng/">
|
<a href="https://blog.dich.bid/tags/zong-he-gong-cheng/">
|
||||||
综合工程 (8 posts)
|
综合工程 (9 posts)
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ Dich'blog</title>
|
|||||||
<div class="post">
|
<div class="post">
|
||||||
<h1 class="post-title">
|
<h1 class="post-title">
|
||||||
tag: #综合工程
|
tag: #综合工程
|
||||||
(8 posts)
|
(9 posts)
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<a href="https://blog.dich.bid/tags">
|
<a href="https://blog.dich.bid/tags">
|
||||||
@ -91,6 +91,16 @@ Dich'blog</title>
|
|||||||
|
|
||||||
|
|
||||||
<ul><li class="post-list">
|
<ul><li class="post-list">
|
||||||
|
<a href="https://blog.dich.bid/360t7/">
|
||||||
|
<span class="post-date">2024-09-24</span>
|
||||||
|
:: <span class="post-list-title">综合工程:360T7刷ImmortalWrt</span></a>
|
||||||
|
|
||||||
|
<span class="post-tags-inline">
|
||||||
|
::
|
||||||
|
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.bid/awesome-win-linux/">
|
<a href="https://blog.dich.bid/awesome-win-linux/">
|
||||||
<span class="post-date">2023-08-18</span>
|
<span class="post-date">2023-08-18</span>
|
||||||
:: <span class="post-list-title">综合工程:Win/linux双系统部署</span></a>
|
:: <span class="post-list-title">综合工程:Win/linux双系统部署</span></a>
|
||||||
|
@ -139,6 +139,13 @@
|
|||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="button next">
|
||||||
|
<a href="https://blog.dich.bid/360t7/">
|
||||||
|
<span class="button__text">综合工程:360T7刷ImmortalWrt</span>
|
||||||
|
<span class="button__icon">→</span>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user