diff --git a/404.html b/404.html
index ab84237780..0da792686c 100644
--- a/404.html
+++ b/404.html
@@ -45,7 +45,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/assets/js/lunr/lunr-store.js b/assets/js/lunr/lunr-store.js
index b9bf36a309..5d9500c270 100644
--- a/assets/js/lunr/lunr-store.js
+++ b/assets/js/lunr/lunr-store.js
@@ -1800,7 +1800,7 @@ var store = [{
"teaser": null
},{
"title": "USTC 网络通脚本",
-"excerpt":"网络通采用简单的 HTTP 接口处理登录、开通出校权限等操作,因此不同的脚本都是调用这个 HTTP 接口,参数也完全相同。 网络通的地址为 http://wlt.ustc.edu.cn/cgi-bin/ip,常用操作包括参数 cmd=set&name=用户名&password=密码&type=0&exp=0。 所有参数都可以通过 GET 或 POST 方法传递,各参数的解释如下: cmd=set 为固定参数,无需修改。(另有 cmd=login 可以登录,但需要保存 cookie。既然脚本中可以不使用 cookie 直接设置出口,也就没有必要使用 cmd=login 了。) name= 为用户名,即你的网络通账号。 password= 为你的网络通密码。 type= 参数表示选择出口,取值与含义如下: type= 出口 0 教育网出口 1 电信出口 2 联通出口 3 电信出口 2 4 联通出口 2 5 电信出口 3 6 联通出口 3 7 教育网出口 2 8 移动测试国际出口 各出口的具体含义请参考网络通的说明。 注:参数取值等于网页上的出口编号减去 1。 exp= 参数表示登录时长,即自动退出登录的时间,取值与含义如下: exp= 登录时长 0 永久 120 动态* 3600 1 小时 14400 4 小时 39600 11 小时 50400 14 小时 注:除了 0 和 120 以外的数值都是秒数。 注 2:“动态”是一个现已不存在的选项,但仍能在 BBS 上找到一些线索,其含义未知。 Windows VBScript 版 VBScript 是 Windows 系统自带的脚本语言,可以直接运行。 来源:https://gist.github.com/iBug/eb6fdbf55465352d6d91b1bdf75ad30f Dim Http, Username, Password Username = \"username\" Password = \"password\" Set Http = CreateObject(\"MSXML2.XMLHTTP.3.0\") Http.Open \"GET\", \"http://wlt.ustc.edu.cn/cgi-bin/ip?cmd=set&type=0&exp=0&name=\" & Username & \"&password=\" & Password, False Http.Send MsgBox \"Status: \" & Http.Status, 65, \"WLT\" Shell 版 适用于 macOS、Linux 和各类 Unix 系统,也包括 Windows Subsystem for Linux。 来源: http://bbs.ustc.edu.cn/cgi/go?cgi=bbscon&bid=77&fn=M4CAEC63D http://bbs.ustc.edu.cn/cgi/bbscon?bn=USTCnet&fn=M52FAC28D 由 LUG @ USTC 维护更新。 使用 Wget #!/bin/sh wget --post-data=\"cmd=set&name=用户名&password=密码&type=0&exp=0\" \\ http://wlt.ustc.edu.cn/cgi-bin/ip -O - 使用 cURL #!/bin/sh curl -d \"cmd=set&name=用户名&password=密码&type=0&exp=0\" \\ http://wlt.ustc.edu.cn/cgi-bin/ip 基于以上命令的一个交互式 POSIX Shell Script: https://github.com/hosiet/wlt 其他版本 Perl 版:https://bbs.ustc.edu.cn/cgi/go?cgi=bbscon&bid=77&fn=M41770FCB ","categories": [],
+"excerpt":"网络通采用简单的 HTTP 接口处理登录、开通出校权限等操作,因此不同的脚本都是调用这个 HTTP 接口,参数也完全相同。 网络通的地址为 http://wlt.ustc.edu.cn/cgi-bin/ip,常用操作包括参数 cmd=set&name=用户名&password=密码&type=0&exp=0。 所有参数都可以通过 GET 或 POST 方法传递,各参数的解释如下: cmd=set 为固定参数,无需修改。(另有 cmd=login 可以登录,但需要保存 cookie。既然脚本中可以不使用 cookie 直接设置出口,也就没有必要使用 cmd=login 了。) name= 为用户名,即你的网络通账号。 password= 为你的网络通密码。 type= 参数表示选择出口,取值与含义如下: type= 出口 0 教育网出口 1 电信出口 2 联通出口 3 电信出口 2 4 联通出口 2 5 电信出口 3 6 联通出口 3 7 教育网出口 2 8 移动测试国际出口 各出口的具体含义请参考网络通的说明。 注:参数取值等于网页上的出口编号减去 1。 exp= 参数表示登录时长,即自动退出登录的时间,取值与含义如下: exp= 登录时长 0 永久 120 动态* 3600 1 小时 14400 4 小时 39600 11 小时 50400 14 小时 注:除了 0 和 120 以外的数值都是秒数。 注 2:“动态”是一个现已不存在的选项,但仍能在 BBS 上找到一些线索,其含义未知。 需要注意的是,如果密码包含诸如 & 等特殊符号,直接进行替换可能无法正常登录。可以使用以下方法测试: 在浏览器中打开网络通网站,然后按下键盘的 F12(Windows/Linux)或者 Command+Option+I(macOS)。 在打开的开发者工具中选择 Console(中文名为「控制台」)标签。 在控制台中输入(复制粘贴)params = new URLSearchParams(),按下回车。 然后输入 params.set('password', '你的密码'),按下回车(记得替换 你的密码)。 最后输入 params.toString(),按下回车。 可以在输出看到类似于 password=%E4%BD%A0%E7%9A%84%E5%AF%86%E7%A0%81 的内容,在 password= 之后的就是你实际需要替换的密码(不包含最后的双引号)。 Windows VBScript 版 VBScript 是 Windows 系统自带的脚本语言,可以直接运行。 来源:https://gist.github.com/iBug/eb6fdbf55465352d6d91b1bdf75ad30f Dim Http, Username, Password Username = \"username\" Password = \"password\" Set Http = CreateObject(\"MSXML2.XMLHTTP.3.0\") Http.Open \"GET\", \"http://wlt.ustc.edu.cn/cgi-bin/ip?cmd=set&type=0&exp=0&name=\" & Username & \"&password=\" & Password, False Http.Send MsgBox \"Status: \" & Http.Status, 65, \"WLT\" Shell 版 适用于 macOS、Linux 和各类 Unix 系统,也包括 Windows Subsystem for Linux。 来源: http://bbs.ustc.edu.cn/cgi/go?cgi=bbscon&bid=77&fn=M4CAEC63D http://bbs.ustc.edu.cn/cgi/bbscon?bn=USTCnet&fn=M52FAC28D 由 LUG @ USTC 维护更新。 使用 Wget #!/bin/sh wget --post-data=\"cmd=set&name=用户名&password=密码&type=0&exp=0\" \\ http://wlt.ustc.edu.cn/cgi-bin/ip -O - 使用 cURL #!/bin/sh curl -d \"cmd=set&name=用户名&password=密码&type=0&exp=0\" \\ http://wlt.ustc.edu.cn/cgi-bin/ip 基于以上命令的一个交互式 POSIX Shell Script: https://github.com/hosiet/wlt 其他版本 Perl 版:https://bbs.ustc.edu.cn/cgi/go?cgi=bbscon&bid=77&fn=M41770FCB ","categories": [],
"tags": [],
"url": "/wiki/scripts/wlt/",
"teaser": null
diff --git a/categories/experience/index.html b/categories/experience/index.html
index cae761bea1..a3e235fffc 100644
--- a/categories/experience/index.html
+++ b/categories/experience/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/index.html b/categories/index.html
index b42df9b2b3..ca02b98d1d 100644
--- a/categories/index.html
+++ b/categories/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/linux-101/index.html b/categories/linux-101/index.html
index 1f9af2a36d..3597dbb56c 100644
--- a/categories/linux-101/index.html
+++ b/categories/linux-101/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/linux-install-party/index.html b/categories/linux-install-party/index.html
index 1b5c1eee6f..105e4b203d 100644
--- a/categories/linux-install-party/index.html
+++ b/categories/linux-install-party/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/lug-\344\274\232\350\256\256/index.html" "b/categories/lug-\344\274\232\350\256\256/index.html"
index c0f289c591..445bcc0ba7 100644
--- "a/categories/lug-\344\274\232\350\256\256/index.html"
+++ "b/categories/lug-\344\274\232\350\256\256/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/lug-\345\260\217\350\201\232/index.html" "b/categories/lug-\345\260\217\350\201\232/index.html"
index 237a75e80b..92bf37ad90 100644
--- "a/categories/lug-\345\260\217\350\201\232/index.html"
+++ "b/categories/lug-\345\260\217\350\201\232/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/lug-\346\234\215\345\212\241/index.html" "b/categories/lug-\346\234\215\345\212\241/index.html"
index 87957b843e..248569f2bc 100644
--- "a/categories/lug-\346\234\215\345\212\241/index.html"
+++ "b/categories/lug-\346\234\215\345\212\241/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/lug-\346\234\215\345\212\241\345\231\250/index.html" "b/categories/lug-\346\234\215\345\212\241\345\231\250/index.html"
index 6e1ee4bf08..b0af19721f 100644
--- "a/categories/lug-\346\234\215\345\212\241\345\231\250/index.html"
+++ "b/categories/lug-\346\234\215\345\212\241\345\231\250/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/lug-\346\264\273\345\212\250/index.html" "b/categories/lug-\346\264\273\345\212\250/index.html"
index 99d376fdfe..d71a41408b 100644
--- "a/categories/lug-\346\264\273\345\212\250/index.html"
+++ "b/categories/lug-\346\264\273\345\212\250/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/lug-\347\275\221\347\253\231/index.html" "b/categories/lug-\347\275\221\347\253\231/index.html"
index 5ba0bf5a94..3de728eb3f 100644
--- "a/categories/lug-\347\275\221\347\253\231/index.html"
+++ "b/categories/lug-\347\275\221\347\253\231/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/tech-tutorial/index.html b/categories/tech-tutorial/index.html
index 1ed4d47f41..bf387a2ae0 100644
--- a/categories/tech-tutorial/index.html
+++ b/categories/tech-tutorial/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/technology/index.html b/categories/technology/index.html
index 9aa3ad0a1c..4f858d7546 100644
--- a/categories/technology/index.html
+++ b/categories/technology/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/translation/index.html b/categories/translation/index.html
index 6dfd0b3e5f..7a1cb2cd84 100644
--- a/categories/translation/index.html
+++ b/categories/translation/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/tutorial/index.html b/categories/tutorial/index.html
index d2220cd099..1cf427d068 100644
--- a/categories/tutorial/index.html
+++ b/categories/tutorial/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/ustc-\347\275\221\347\273\234\345\220\257\345\212\250\346\234\215\345\212\241/index.html" "b/categories/ustc-\347\275\221\347\273\234\345\220\257\345\212\250\346\234\215\345\212\241/index.html"
index cd369b0cb4..4c065ae1a5 100644
--- "a/categories/ustc-\347\275\221\347\273\234\345\220\257\345\212\250\346\234\215\345\212\241/index.html"
+++ "b/categories/ustc-\347\275\221\347\273\234\345\220\257\345\212\250\346\234\215\345\212\241/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/categories/ustc/index.html b/categories/ustc/index.html
index 9d81654fa2..7a42db7d08 100644
--- a/categories/ustc/index.html
+++ b/categories/ustc/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/\344\270\232\344\275\231\346\227\240\347\272\277\347\224\265\345\215\217\344\274\232\346\264\273\345\212\250/index.html" "b/categories/\344\270\232\344\275\231\346\227\240\347\272\277\347\224\265\345\215\217\344\274\232\346\264\273\345\212\250/index.html"
index e3b13b11ef..d90af471f5 100644
--- "a/categories/\344\270\232\344\275\231\346\227\240\347\272\277\347\224\265\345\215\217\344\274\232\346\264\273\345\212\250/index.html"
+++ "b/categories/\344\270\232\344\275\231\346\227\240\347\272\277\347\224\265\345\215\217\344\274\232\346\264\273\345\212\250/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/\347\273\217\351\252\214\345\210\206\344\272\253/index.html" "b/categories/\347\273\217\351\252\214\345\210\206\344\272\253/index.html"
index 7004cf8abc..bf61950576 100644
--- "a/categories/\347\273\217\351\252\214\345\210\206\344\272\253/index.html"
+++ "b/categories/\347\273\217\351\252\214\345\210\206\344\272\253/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/categories/\350\257\273\344\271\246\347\254\224\350\256\260/index.html" "b/categories/\350\257\273\344\271\246\347\254\224\350\256\260/index.html"
index d7ac89d4da..c68cb9963c 100644
--- "a/categories/\350\257\273\344\271\246\347\254\224\350\256\260/index.html"
+++ "b/categories/\350\257\273\344\271\246\347\254\224\350\256\260/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/feed.xml b/feed.xml
index e157e59f36..b7c1ded6af 100644
--- a/feed.xml
+++ b/feed.xml
@@ -1,4 +1,4 @@
-Jekyll2024-09-23T22:06:33+08:00https://lug.ustc.edu.cn/feed.xmlLUG @ USTC中国科学技术大学 Linux 用户协会USTCLUG2024 软件自由日中国科大站2024-09-21T20:00:00+08:002024-09-23T22:05:40+08:00https://lug.ustc.edu.cn/news/2024/09/SFD2024 年 9 月 21 日,LUG 举办了软件自由日 (Software Freedom Day), 活动在 14:30-18:30 于西区 3C101 举行,并同步进行了线上直播。本次活动邀请到网络信息中心的张焕杰老师、本届 LUG 的 COO 马天开同学,PLCT 实验室的于波同学,以及 traceexec
的开发者任鹏飞同学。
+Jekyll2024-10-21T01:53:47+08:00https://lug.ustc.edu.cn/feed.xmlLUG @ USTC中国科学技术大学 Linux 用户协会USTCLUG2024 软件自由日中国科大站2024-09-21T20:00:00+08:002024-09-23T22:05:40+08:00https://lug.ustc.edu.cn/news/2024/09/SFD2024 年 9 月 21 日,LUG 举办了软件自由日 (Software Freedom Day), 活动在 14:30-18:30 于西区 3C101 举行,并同步进行了线上直播。本次活动邀请到网络信息中心的张焕杰老师、本届 LUG 的 COO 马天开同学,PLCT 实验室的于波同学,以及 traceexec
的开发者任鹏飞同学。
14 时 30 分,校学生 Linux 用户协会会长罗嘉宏同学简洁地介绍了活动流程安排和演讲嘉宾后,软件自由日活动正式开始。
首先,来自网络信息中心的张老师为我们简单介绍了目前校园内 5G 双域专网的建设情况,并分享了背后的技术细节。在演讲的结尾,他邀请在场的同学参与到 5G 专网的体验中来,并解答了同学们的问题。
diff --git a/feed/index.html b/feed/index.html
index c21b4e6395..74c7cd8970 100644
--- a/feed/index.html
+++ b/feed/index.html
@@ -45,7 +45,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/feed/news.xml b/feed/news.xml
index 9625379b8c..2a75139e94 100644
--- a/feed/news.xml
+++ b/feed/news.xml
@@ -1,4 +1,4 @@
-Jekyll2024-09-23T22:06:33+08:00https://lug.ustc.edu.cn/feed/news.xmlLUG @ USTC | News中国科学技术大学 Linux 用户协会USTCLUG2024 软件自由日中国科大站2024-09-21T20:00:00+08:002024-09-23T22:05:40+08:00https://lug.ustc.edu.cn/news/2024/09/SFD2024 年 9 月 21 日,LUG 举办了软件自由日 (Software Freedom Day), 活动在 14:30-18:30 于西区 3C101 举行,并同步进行了线上直播。本次活动邀请到网络信息中心的张焕杰老师、本届 LUG 的 COO 马天开同学,PLCT 实验室的于波同学,以及 traceexec
的开发者任鹏飞同学。
+Jekyll2024-10-21T01:53:47+08:00https://lug.ustc.edu.cn/feed/news.xmlLUG @ USTC | News中国科学技术大学 Linux 用户协会USTCLUG2024 软件自由日中国科大站2024-09-21T20:00:00+08:002024-09-23T22:05:40+08:00https://lug.ustc.edu.cn/news/2024/09/SFD2024 年 9 月 21 日,LUG 举办了软件自由日 (Software Freedom Day), 活动在 14:30-18:30 于西区 3C101 举行,并同步进行了线上直播。本次活动邀请到网络信息中心的张焕杰老师、本届 LUG 的 COO 马天开同学,PLCT 实验室的于波同学,以及 traceexec
的开发者任鹏飞同学。
14 时 30 分,校学生 Linux 用户协会会长罗嘉宏同学简洁地介绍了活动流程安排和演讲嘉宾后,软件自由日活动正式开始。
首先,来自网络信息中心的张老师为我们简单介绍了目前校园内 5G 双域专网的建设情况,并分享了背后的技术细节。在演讲的结尾,他邀请在场的同学参与到 5G 专网的体验中来,并解答了同学们的问题。
diff --git a/feed/planet.xml b/feed/planet.xml
index b98acef7a7..bc66dc13a5 100644
--- a/feed/planet.xml
+++ b/feed/planet.xml
@@ -1,4 +1,4 @@
-Jekyll2024-09-23T22:06:33+08:00https://lug.ustc.edu.cn/feed/planet.xmlLUG @ USTC | Planet中国科学技术大学 Linux 用户协会USTCLUG使用 Rclone 备份 OneDrive 内容2024-05-10T00:00:00+08:002024-09-15T01:34:15+08:00https://lug.ustc.edu.cn/planet/2024/05/onedrive-backup-with-rclone本文用于介绍如何使用 Rclone 备份 OneDrive 内容。
+Jekyll2024-10-21T01:53:47+08:00https://lug.ustc.edu.cn/feed/planet.xmlLUG @ USTC | Planet中国科学技术大学 Linux 用户协会USTCLUG使用 Rclone 备份 OneDrive 内容2024-05-10T00:00:00+08:002024-09-15T01:34:15+08:00https://lug.ustc.edu.cn/planet/2024/05/onedrive-backup-with-rclone本文用于介绍如何使用 Rclone 备份 OneDrive 内容。
Rclone 简介
Rclone 是一个命令行工具,用于同步文件和目录到和从云存储服务。它支持 Google Drive、Amazon S3、Dropbox、Microsoft OneDrive、Yandex Disk、Box 和其他一些云存储服务。Rclone 是一个 Go 程序,可以在 Windows、macOS、Linux 和其他操作系统上运行。
安装 Rclone
diff --git a/index.html b/index.html
index 314d78056a..a22531f2e1 100644
--- a/index.html
+++ b/index.html
@@ -54,7 +54,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/10/index.html b/news/10/index.html
index c813ced091..f9f95ef871 100644
--- a/news/10/index.html
+++ b/news/10/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/11/index.html b/news/11/index.html
index f8f6b4883e..f7f1545654 100644
--- a/news/11/index.html
+++ b/news/11/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/12/index.html b/news/12/index.html
index c0568d6cab..fdc19aeb8d 100644
--- a/news/12/index.html
+++ b/news/12/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/13/index.html b/news/13/index.html
index ac57abbaf5..9e3d6bb512 100644
--- a/news/13/index.html
+++ b/news/13/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/14/index.html b/news/14/index.html
index d519c595e2..0f74eb1407 100644
--- a/news/14/index.html
+++ b/news/14/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/15/index.html b/news/15/index.html
index 467c20bb10..d0ebde2673 100644
--- a/news/15/index.html
+++ b/news/15/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/16/index.html b/news/16/index.html
index 178e98e1b0..132c57881a 100644
--- a/news/16/index.html
+++ b/news/16/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/17/index.html b/news/17/index.html
index d2c8e02661..7fa4fe7180 100644
--- a/news/17/index.html
+++ b/news/17/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/18/index.html b/news/18/index.html
index 67928d2d7c..cfffaa2c40 100644
--- a/news/18/index.html
+++ b/news/18/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/19/index.html b/news/19/index.html
index d792e725e6..d8a0a3b4bd 100644
--- a/news/19/index.html
+++ b/news/19/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2/index.html b/news/2/index.html
index d6a7fa41f7..0a49525e26 100644
--- a/news/2/index.html
+++ b/news/2/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/20/index.html b/news/20/index.html
index 1c39e8e5a9..792e8f8aab 100644
--- a/news/20/index.html
+++ b/news/20/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2010/09/2010-software-freedom-day/index.html b/news/2010/09/2010-software-freedom-day/index.html
index 7c80189193..89868faf9d 100644
--- a/news/2010/09/2010-software-freedom-day/index.html
+++ b/news/2010/09/2010-software-freedom-day/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2010/10/2010-lug-server-dev-meeting/index.html b/news/2010/10/2010-lug-server-dev-meeting/index.html
index d29b3cd156..52a27912c7 100644
--- a/news/2010/10/2010-lug-server-dev-meeting/index.html
+++ b/news/2010/10/2010-lug-server-dev-meeting/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2010/12/2010-04-linux-install-party/index.html b/news/2010/12/2010-04-linux-install-party/index.html
index 19b746c133..4f5a22ebbf 100644
--- a/news/2010/12/2010-04-linux-install-party/index.html
+++ b/news/2010/12/2010-04-linux-install-party/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/04/2011-winter-reading-notes/index.html b/news/2011/04/2011-winter-reading-notes/index.html
index a7fb556d01..fe65c3c6bf 100644
--- a/news/2011/04/2011-winter-reading-notes/index.html
+++ b/news/2011/04/2011-winter-reading-notes/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/04/gnome3-launch-party/index.html b/news/2011/04/gnome3-launch-party/index.html
index fd224d86ed..ca2f17fbac 100644
--- a/news/2011/04/gnome3-launch-party/index.html
+++ b/news/2011/04/gnome3-launch-party/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/04/mirrors-ustc-edu-cn-comes/index.html b/news/2011/04/mirrors-ustc-edu-cn-comes/index.html
index b7d713de20..7b432b15de 100644
--- a/news/2011/04/mirrors-ustc-edu-cn-comes/index.html
+++ b/news/2011/04/mirrors-ustc-edu-cn-comes/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/05/customize-pxe-live-system/index.html b/news/2011/05/customize-pxe-live-system/index.html
index 96982cc711..3aef8ed7d9 100644
--- a/news/2011/05/customize-pxe-live-system/index.html
+++ b/news/2011/05/customize-pxe-live-system/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/05/ftp-cn-debian-org-comes/index.html b/news/2011/05/ftp-cn-debian-org-comes/index.html
index 59ea7bde04..8a6d857270 100644
--- a/news/2011/05/ftp-cn-debian-org-comes/index.html
+++ b/news/2011/05/ftp-cn-debian-org-comes/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/05/linux-e7-89-88-e7-89-88-e8-81-9a/index.html b/news/2011/05/linux-e7-89-88-e7-89-88-e8-81-9a/index.html
index c9bce5ec92..0575ba5c10 100644
--- a/news/2011/05/linux-e7-89-88-e7-89-88-e8-81-9a/index.html
+++ b/news/2011/05/linux-e7-89-88-e7-89-88-e8-81-9a/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/06/deepin-linux-dau-2011/index.html b/news/2011/06/deepin-linux-dau-2011/index.html
index 76c6b9bc7e..d7179b0cbd 100644
--- a/news/2011/06/deepin-linux-dau-2011/index.html
+++ b/news/2011/06/deepin-linux-dau-2011/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/06/linux-tshirt-2011/index.html b/news/2011/06/linux-tshirt-2011/index.html
index 45d9104108..c823738da3 100644
--- a/news/2011/06/linux-tshirt-2011/index.html
+++ b/news/2011/06/linux-tshirt-2011/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2011/12/linux-install-party2011/index.html b/news/2011/12/linux-install-party2011/index.html
index 7bc41f0840..f6bcac9d85 100644
--- a/news/2011/12/linux-install-party2011/index.html
+++ b/news/2011/12/linux-install-party2011/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2012/09/sfd-2012-hefei-ustc/index.html b/news/2012/09/sfd-2012-hefei-ustc/index.html
index c0969eae05..7e430e43f6 100644
--- a/news/2012/09/sfd-2012-hefei-ustc/index.html
+++ b/news/2012/09/sfd-2012-hefei-ustc/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2012/11/ustclug-going-online-going-native/index.html b/news/2012/11/ustclug-going-online-going-native/index.html
index 3ebd3a1773..dab06c37f2 100644
--- a/news/2012/11/ustclug-going-online-going-native/index.html
+++ b/news/2012/11/ustclug-going-online-going-native/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2013/04/linux-make-everything-easy/index.html b/news/2013/04/linux-make-everything-easy/index.html
index de7f2ee03f..2e3d280d7a 100644
--- a/news/2013/04/linux-make-everything-easy/index.html
+++ b/news/2013/04/linux-make-everything-easy/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2013/04/lug/index.html b/news/2013/04/lug/index.html
index 99c7ad2aee..0b6fb9729a 100644
--- a/news/2013/04/lug/index.html
+++ b/news/2013/04/lug/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2013/12/2013-e7-a7-91-e5-a4-a7lug-software-freedom-day/index.html b/news/2013/12/2013-e7-a7-91-e5-a4-a7lug-software-freedom-day/index.html
index 6046ab1133..9e1f9073a3 100644
--- a/news/2013/12/2013-e7-a7-91-e5-a4-a7lug-software-freedom-day/index.html
+++ b/news/2013/12/2013-e7-a7-91-e5-a4-a7lug-software-freedom-day/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2014/08/2013-software-freedom-day/index.html b/news/2014/08/2013-software-freedom-day/index.html
index 2474dbf941..79d835138f 100644
--- a/news/2014/08/2013-software-freedom-day/index.html
+++ b/news/2014/08/2013-software-freedom-day/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2014/08/2014-e5-b9-b48-e6-9c-88-sfd-e5-b7-a5-e4-bd-9c-e8-a7-84-e5-88-92-e6-9a-a8-e6-96-b0-e5-ad-a6-e6-9c-9f-lug-e5-b7-a5-e4-bd-9c-e4-bc-9a-e8-ae-ae/index.html b/news/2014/08/2014-e5-b9-b48-e6-9c-88-sfd-e5-b7-a5-e4-bd-9c-e8-a7-84-e5-88-92-e6-9a-a8-e6-96-b0-e5-ad-a6-e6-9c-9f-lug-e5-b7-a5-e4-bd-9c-e4-bc-9a-e8-ae-ae/index.html
index 1c5c043a16..f13dec51ec 100644
--- a/news/2014/08/2014-e5-b9-b48-e6-9c-88-sfd-e5-b7-a5-e4-bd-9c-e8-a7-84-e5-88-92-e6-9a-a8-e6-96-b0-e5-ad-a6-e6-9c-9f-lug-e5-b7-a5-e4-bd-9c-e4-bc-9a-e8-ae-ae/index.html
+++ b/news/2014/08/2014-e5-b9-b48-e6-9c-88-sfd-e5-b7-a5-e4-bd-9c-e8-a7-84-e5-88-92-e6-9a-a8-e6-96-b0-e5-ad-a6-e6-9c-9f-lug-e5-b7-a5-e4-bd-9c-e4-bc-9a-e8-ae-ae/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2014/09/2014-sfd/index.html b/news/2014/09/2014-sfd/index.html
index 5052abd7b5..8a82e20e3d 100644
--- a/news/2014/09/2014-sfd/index.html
+++ b/news/2014/09/2014-sfd/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2014/10/2014-autumn-kaiintaikai/index.html b/news/2014/10/2014-autumn-kaiintaikai/index.html
index cbdbb3625c..8a846ad3ee 100644
--- a/news/2014/10/2014-autumn-kaiintaikai/index.html
+++ b/news/2014/10/2014-autumn-kaiintaikai/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2014/12/2014-linux-user-party/index.html b/news/2014/12/2014-linux-user-party/index.html
index 6fba2510cd..cda28c890b 100644
--- a/news/2014/12/2014-linux-user-party/index.html
+++ b/news/2014/12/2014-linux-user-party/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2014/12/blog-server-down/index.html b/news/2014/12/blog-server-down/index.html
index 4f635ad0aa..c5f69ee35a 100644
--- a/news/2014/12/blog-server-down/index.html
+++ b/news/2014/12/blog-server-down/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/04/2015-lug-election/index.html b/news/2015/04/2015-lug-election/index.html
index 5b04ef6bc7..847f3e2426 100644
--- a/news/2015/04/2015-lug-election/index.html
+++ b/news/2015/04/2015-lug-election/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/05/2015-linux-tshirt-voting-result-and-order/index.html b/news/2015/05/2015-linux-tshirt-voting-result-and-order/index.html
index 67e8349e16..8d044a7ca4 100644
--- a/news/2015/05/2015-linux-tshirt-voting-result-and-order/index.html
+++ b/news/2015/05/2015-linux-tshirt-voting-result-and-order/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/05/2015-linux-user-group-banshan/index.html b/news/2015/05/2015-linux-user-group-banshan/index.html
index a0fc9b25fa..a2cb8bf956 100644
--- a/news/2015/05/2015-linux-user-group-banshan/index.html
+++ b/news/2015/05/2015-linux-user-group-banshan/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/06/201406-server-fault-announce/index.html b/news/2015/06/201406-server-fault-announce/index.html
index fb8539c33c..7b1a1b46aa 100644
--- a/news/2015/06/201406-server-fault-announce/index.html
+++ b/news/2015/06/201406-server-fault-announce/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/06/gitlab-emergency-maintenance/index.html b/news/2015/06/gitlab-emergency-maintenance/index.html
index 2658dddd51..ea9a02149c 100644
--- a/news/2015/06/gitlab-emergency-maintenance/index.html
+++ b/news/2015/06/gitlab-emergency-maintenance/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/08/lug-service-restore-status/index.html b/news/2015/08/lug-service-restore-status/index.html
index 5d9d19b5b7..61dee717e8 100644
--- a/news/2015/08/lug-service-restore-status/index.html
+++ b/news/2015/08/lug-service-restore-status/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/09/2015sfd/index.html b/news/2015/09/2015sfd/index.html
index b22e456298..02b96930a9 100644
--- a/news/2015/09/2015sfd/index.html
+++ b/news/2015/09/2015sfd/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2015/09/lug-banshan-commission-guide/index.html b/news/2015/09/lug-banshan-commission-guide/index.html
index fb06957c80..77eda8715d 100644
--- a/news/2015/09/lug-banshan-commission-guide/index.html
+++ b/news/2015/09/lug-banshan-commission-guide/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2016/05/2016-lug-election/index.html b/news/2016/05/2016-lug-election/index.html
index fda1c0d2ef..d35f1e362a 100644
--- a/news/2016/05/2016-lug-election/index.html
+++ b/news/2016/05/2016-lug-election/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2016/06/new-activity-room-in-west-library/index.html b/news/2016/06/new-activity-room-in-west-library/index.html
index 10eb6798ed..bdd8332204 100644
--- a/news/2016/06/new-activity-room-in-west-library/index.html
+++ b/news/2016/06/new-activity-room-in-west-library/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2016/09/2016-sfd-ustc/index.html b/news/2016/09/2016-sfd-ustc/index.html
index 80c0bb7591..4d0acc31ad 100644
--- a/news/2016/09/2016-sfd-ustc/index.html
+++ b/news/2016/09/2016-sfd-ustc/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2016/10/visiting_network_center/index.html b/news/2016/10/visiting_network_center/index.html
index 02535b85b7..4918bb7b80 100644
--- a/news/2016/10/visiting_network_center/index.html
+++ b/news/2016/10/visiting_network_center/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2017/05/2017-bbs-linux-banshan-voteresult/index.html b/news/2017/05/2017-bbs-linux-banshan-voteresult/index.html
index aa5f8e29b4..e1f587aaae 100644
--- a/news/2017/05/2017-bbs-linux-banshan-voteresult/index.html
+++ b/news/2017/05/2017-bbs-linux-banshan-voteresult/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2017/05/2017-bbs-linux-banshan-voting/index.html b/news/2017/05/2017-bbs-linux-banshan-voting/index.html
index 0e352b6fbe..ac267ee462 100644
--- a/news/2017/05/2017-bbs-linux-banshan-voting/index.html
+++ b/news/2017/05/2017-bbs-linux-banshan-voting/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2017/05/2017-bbs-linux-banshan/index.html b/news/2017/05/2017-bbs-linux-banshan/index.html
index bc6cbc989e..97537f2a57 100644
--- a/news/2017/05/2017-bbs-linux-banshan/index.html
+++ b/news/2017/05/2017-bbs-linux-banshan/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2017/06/2017-linux-banshan-preorder-start/index.html b/news/2017/06/2017-linux-banshan-preorder-start/index.html
index 258ada5b9d..18cc981234 100644
--- a/news/2017/06/2017-linux-banshan-preorder-start/index.html
+++ b/news/2017/06/2017-linux-banshan-preorder-start/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2018/05/SOSCON18/index.html b/news/2018/05/SOSCON18/index.html
index 046829351a..ff893e15e7 100644
--- a/news/2018/05/SOSCON18/index.html
+++ b/news/2018/05/SOSCON18/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2018/05/lug-logo-collect/index.html b/news/2018/05/lug-logo-collect/index.html
index 603bcda366..8c1329a984 100644
--- a/news/2018/05/lug-logo-collect/index.html
+++ b/news/2018/05/lug-logo-collect/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2018/06/server-down/index.html b/news/2018/06/server-down/index.html
index 04c1c3ecca..b81c297755 100644
--- a/news/2018/06/server-down/index.html
+++ b/news/2018/06/server-down/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2018/08/freshman-course/index.html b/news/2018/08/freshman-course/index.html
index 8932566e2d..1c49eb5013 100644
--- a/news/2018/08/freshman-course/index.html
+++ b/news/2018/08/freshman-course/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2018/09/2018-sfd-ustc/index.html b/news/2018/09/2018-sfd-ustc/index.html
index c636aa361e..b50b4c2c35 100644
--- a/news/2018/09/2018-sfd-ustc/index.html
+++ b/news/2018/09/2018-sfd-ustc/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2018/09/lug-logo-collect-result/index.html b/news/2018/09/lug-logo-collect-result/index.html
index 45e98a7f2c..8b13e39901 100644
--- a/news/2018/09/lug-logo-collect-result/index.html
+++ b/news/2018/09/lug-logo-collect-result/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/01/hackergame-awards/index.html b/news/2019/01/hackergame-awards/index.html
index 6a9b63e3f2..5d3cbb4561 100644
--- a/news/2019/01/hackergame-awards/index.html
+++ b/news/2019/01/hackergame-awards/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/03/linux-install-party/index.html b/news/2019/03/linux-install-party/index.html
index 674296300f..7d1d2f6245 100644
--- a/news/2019/03/linux-install-party/index.html
+++ b/news/2019/03/linux-install-party/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/04/2019-bbs-linux-banshan/index.html b/news/2019/04/2019-bbs-linux-banshan/index.html
index 3ee470d3d1..8574be19e5 100644
--- a/news/2019/04/2019-bbs-linux-banshan/index.html
+++ b/news/2019/04/2019-bbs-linux-banshan/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/06/2019-bbs-linux-banshan-preorder-start/index.html b/news/2019/06/2019-bbs-linux-banshan-preorder-start/index.html
index 886e1c575e..8c696689cd 100644
--- a/news/2019/06/2019-bbs-linux-banshan-preorder-start/index.html
+++ b/news/2019/06/2019-bbs-linux-banshan-preorder-start/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/09/2019-freshman-course/index.html b/news/2019/09/2019-freshman-course/index.html
index e195a3c64b..6f9dc7ac69 100644
--- a/news/2019/09/2019-freshman-course/index.html
+++ b/news/2019/09/2019-freshman-course/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/09/2019-sfd-ustc/index.html b/news/2019/09/2019-sfd-ustc/index.html
index edf9dba811..115ab5be9f 100644
--- a/news/2019/09/2019-sfd-ustc/index.html
+++ b/news/2019/09/2019-sfd-ustc/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2019/12/hackergame-2019/index.html b/news/2019/12/hackergame-2019/index.html
index 6cd3192e26..deeb1ab353 100644
--- a/news/2019/12/hackergame-2019/index.html
+++ b/news/2019/12/hackergame-2019/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/01/server-down/index.html b/news/2020/01/server-down/index.html
index ff974da484..27f15e2b17 100644
--- a/news/2020/01/server-down/index.html
+++ b/news/2020/01/server-down/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/03/linux101-online/index.html b/news/2020/03/linux101-online/index.html
index cfd830b334..b418118942 100644
--- a/news/2020/03/linux101-online/index.html
+++ b/news/2020/03/linux101-online/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/05/opensource-summer-projects/index.html b/news/2020/05/opensource-summer-projects/index.html
index d6198cb906..ed31c17725 100644
--- a/news/2020/05/opensource-summer-projects/index.html
+++ b/news/2020/05/opensource-summer-projects/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/05/servers-down/index.html b/news/2020/05/servers-down/index.html
index 1b2ce2d833..d4422317a6 100644
--- a/news/2020/05/servers-down/index.html
+++ b/news/2020/05/servers-down/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/08/new-website/index.html b/news/2020/08/new-website/index.html
index be06417b22..3031a7972c 100644
--- a/news/2020/08/new-website/index.html
+++ b/news/2020/08/new-website/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/09/software-freedom-day/index.html b/news/2020/09/software-freedom-day/index.html
index f7efd40d3c..d01b4274b4 100644
--- a/news/2020/09/software-freedom-day/index.html
+++ b/news/2020/09/software-freedom-day/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/10/ce-and-reverse/index.html b/news/2020/10/ce-and-reverse/index.html
index f86243c4d6..786a6f4a1b 100644
--- a/news/2020/10/ce-and-reverse/index.html
+++ b/news/2020/10/ce-and-reverse/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/10/freshmen-meeting/index.html b/news/2020/10/freshmen-meeting/index.html
index 9439736169..e126663d94 100644
--- a/news/2020/10/freshmen-meeting/index.html
+++ b/news/2020/10/freshmen-meeting/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/12/hackergame-2020/index.html b/news/2020/12/hackergame-2020/index.html
index ba88648d42..db126abb66 100644
--- a/news/2020/12/hackergame-2020/index.html
+++ b/news/2020/12/hackergame-2020/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/12/multitopic-party-2/index.html b/news/2020/12/multitopic-party-2/index.html
index eadbecafb0..4a2df2c11a 100644
--- a/news/2020/12/multitopic-party-2/index.html
+++ b/news/2020/12/multitopic-party-2/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2020/12/multitopic-party/index.html b/news/2020/12/multitopic-party/index.html
index 140a39e2b2..60d4e4cfbd 100644
--- a/news/2020/12/multitopic-party/index.html
+++ b/news/2020/12/multitopic-party/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/03/multitopic-party/index.html b/news/2021/03/multitopic-party/index.html
index 56db5f4ba1..9aedad153e 100644
--- a/news/2021/03/multitopic-party/index.html
+++ b/news/2021/03/multitopic-party/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/04/linux-101-1/index.html b/news/2021/04/linux-101-1/index.html
index 0c791b20d4..75323473f1 100644
--- a/news/2021/04/linux-101-1/index.html
+++ b/news/2021/04/linux-101-1/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/04/linux-101-2/index.html b/news/2021/04/linux-101-2/index.html
index aa3f83cdce..3246d5fb64 100644
--- a/news/2021/04/linux-101-2/index.html
+++ b/news/2021/04/linux-101-2/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/04/linux-101-3/index.html b/news/2021/04/linux-101-3/index.html
index 7d0e1c94d9..7f06468e0f 100644
--- a/news/2021/04/linux-101-3/index.html
+++ b/news/2021/04/linux-101-3/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/04/lug-banshan/index.html b/news/2021/04/lug-banshan/index.html
index 2ea6ddcd8d..86773767d5 100644
--- a/news/2021/04/lug-banshan/index.html
+++ b/news/2021/04/lug-banshan/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/04/opensource-summer-iscas/index.html b/news/2021/04/opensource-summer-iscas/index.html
index d19bc5cdb7..98d9b03f5d 100644
--- a/news/2021/04/opensource-summer-iscas/index.html
+++ b/news/2021/04/opensource-summer-iscas/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/05/linux-101-4/index.html b/news/2021/05/linux-101-4/index.html
index b0636d42e9..73ca793e18 100644
--- a/news/2021/05/linux-101-4/index.html
+++ b/news/2021/05/linux-101-4/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/06/lug-banshan-order/index.html b/news/2021/06/lug-banshan-order/index.html
index 3b320ed32f..089deaccac 100644
--- a/news/2021/06/lug-banshan-order/index.html
+++ b/news/2021/06/lug-banshan-order/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/06/pcb/index.html b/news/2021/06/pcb/index.html
index c7bdc51653..0bc3bb9029 100644
--- a/news/2021/06/pcb/index.html
+++ b/news/2021/06/pcb/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/09/SFD/index.html b/news/2021/09/SFD/index.html
index 8541ff355c..f928a35ca8 100644
--- a/news/2021/09/SFD/index.html
+++ b/news/2021/09/SFD/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/11/freshman-meeting/index.html b/news/2021/11/freshman-meeting/index.html
index 435db5098f..c4e4e42858 100644
--- a/news/2021/11/freshman-meeting/index.html
+++ b/news/2021/11/freshman-meeting/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/11/hackergame-2021/index.html b/news/2021/11/hackergame-2021/index.html
index 6d156031d7..ef229fc913 100644
--- a/news/2021/11/hackergame-2021/index.html
+++ b/news/2021/11/hackergame-2021/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/12/USTC-resources-LUG-tech-intro/index.html b/news/2021/12/USTC-resources-LUG-tech-intro/index.html
index 09078a12b5..4525a17453 100644
--- a/news/2021/12/USTC-resources-LUG-tech-intro/index.html
+++ b/news/2021/12/USTC-resources-LUG-tech-intro/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/12/linux-beautify/index.html b/news/2021/12/linux-beautify/index.html
index 493a1e2929..212456f10e 100644
--- a/news/2021/12/linux-beautify/index.html
+++ b/news/2021/12/linux-beautify/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2021/12/web-development/index.html b/news/2021/12/web-development/index.html
index e44e4cc22f..074b749207 100644
--- a/news/2021/12/web-development/index.html
+++ b/news/2021/12/web-development/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/03/linux-101-1/index.html b/news/2022/03/linux-101-1/index.html
index bd6dd361cb..3146121136 100644
--- a/news/2022/03/linux-101-1/index.html
+++ b/news/2022/03/linux-101-1/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/04/linux-101-2/index.html b/news/2022/04/linux-101-2/index.html
index e3b2783ff4..7d45fc5c89 100644
--- a/news/2022/04/linux-101-2/index.html
+++ b/news/2022/04/linux-101-2/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/04/linux-101-3/index.html b/news/2022/04/linux-101-3/index.html
index 79342f2c28..8ea1f90068 100644
--- a/news/2022/04/linux-101-3/index.html
+++ b/news/2022/04/linux-101-3/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/05/opensource-summer-iscas/index.html b/news/2022/05/opensource-summer-iscas/index.html
index fbcdd63461..296c1a8fd3 100644
--- a/news/2022/05/opensource-summer-iscas/index.html
+++ b/news/2022/05/opensource-summer-iscas/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/05/retrocomputing-and-radio-show/index.html b/news/2022/05/retrocomputing-and-radio-show/index.html
index ce6bb57c84..e99c1b9395 100644
--- a/news/2022/05/retrocomputing-and-radio-show/index.html
+++ b/news/2022/05/retrocomputing-and-radio-show/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/09/2022-freshman-course/index.html b/news/2022/09/2022-freshman-course/index.html
index 4422462fee..b3c9742148 100644
--- a/news/2022/09/2022-freshman-course/index.html
+++ b/news/2022/09/2022-freshman-course/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/09/SFD/index.html b/news/2022/09/SFD/index.html
index 8b14815822..f1e846fe2a 100644
--- a/news/2022/09/SFD/index.html
+++ b/news/2022/09/SFD/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/10/Hackergame2022-pep-rally/index.html b/news/2022/10/Hackergame2022-pep-rally/index.html
index ccde0a9f41..6821939331 100644
--- a/news/2022/10/Hackergame2022-pep-rally/index.html
+++ b/news/2022/10/Hackergame2022-pep-rally/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/10/gathering-nodejs/index.html b/news/2022/10/gathering-nodejs/index.html
index 9c2472e2a7..ecb9d2db87 100644
--- a/news/2022/10/gathering-nodejs/index.html
+++ b/news/2022/10/gathering-nodejs/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2022/10/gathering-xmake/index.html b/news/2022/10/gathering-xmake/index.html
index 4f25ffb7c7..499c6f1ca0 100644
--- a/news/2022/10/gathering-xmake/index.html
+++ b/news/2022/10/gathering-xmake/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/03/hackergame-award-ceremony/index.html b/news/2023/03/hackergame-award-ceremony/index.html
index d6ff70c769..86f1d8966e 100644
--- a/news/2023/03/hackergame-award-ceremony/index.html
+++ b/news/2023/03/hackergame-award-ceremony/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/03/linux101-revision/index.html b/news/2023/03/linux101-revision/index.html
index ee08f91da4..17cccfcac9 100644
--- a/news/2023/03/linux101-revision/index.html
+++ b/news/2023/03/linux101-revision/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/04/Linux_Install_Party_2023/index.html b/news/2023/04/Linux_Install_Party_2023/index.html
index c9f6f6e1da..d0b796e60d 100644
--- a/news/2023/04/Linux_Install_Party_2023/index.html
+++ b/news/2023/04/Linux_Install_Party_2023/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/08/nju-talk/index.html b/news/2023/08/nju-talk/index.html
index 884ee66a6c..743352b6eb 100644
--- a/news/2023/08/nju-talk/index.html
+++ b/news/2023/08/nju-talk/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/09/2023-freshmen-course/index.html b/news/2023/09/2023-freshmen-course/index.html
index 926470ef18..90d6e15426 100644
--- a/news/2023/09/2023-freshmen-course/index.html
+++ b/news/2023/09/2023-freshmen-course/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/09/SFD/index.html b/news/2023/09/SFD/index.html
index 1ccd67f0fa..a16d72bdbe 100644
--- a/news/2023/09/SFD/index.html
+++ b/news/2023/09/SFD/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/10/Hackergame2023-pep-rally/index.html b/news/2023/10/Hackergame2023-pep-rally/index.html
index 72f567fb1c..dc69f3d1dc 100644
--- a/news/2023/10/Hackergame2023-pep-rally/index.html
+++ b/news/2023/10/Hackergame2023-pep-rally/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/10/gathering-git/index.html b/news/2023/10/gathering-git/index.html
index f2b9b47e75..5f3b09cc58 100644
--- a/news/2023/10/gathering-git/index.html
+++ b/news/2023/10/gathering-git/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/12/gathering-debug/index.html b/news/2023/12/gathering-debug/index.html
index 8614aa64d2..cddff0e93f 100644
--- a/news/2023/12/gathering-debug/index.html
+++ b/news/2023/12/gathering-debug/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2023/12/hackergame-2023/index.html b/news/2023/12/hackergame-2023/index.html
index 805626a5b2..1ce7eb2770 100644
--- a/news/2023/12/hackergame-2023/index.html
+++ b/news/2023/12/hackergame-2023/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/03/Linux101-2/index.html b/news/2024/03/Linux101-2/index.html
index 9d8a04a610..d2a92c6a70 100644
--- a/news/2024/03/Linux101-2/index.html
+++ b/news/2024/03/Linux101-2/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/03/Linux101-LIP-2024/index.html b/news/2024/03/Linux101-LIP-2024/index.html
index 81e1318beb..bcbb76fb38 100644
--- a/news/2024/03/Linux101-LIP-2024/index.html
+++ b/news/2024/03/Linux101-LIP-2024/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/03/gathering-attack-and-defense-exercise-talk/index.html b/news/2024/03/gathering-attack-and-defense-exercise-talk/index.html
index 0236cac3ed..cb2a36310c 100644
--- a/news/2024/03/gathering-attack-and-defense-exercise-talk/index.html
+++ b/news/2024/03/gathering-attack-and-defense-exercise-talk/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/04/Linux101-3/index.html b/news/2024/04/Linux101-3/index.html
index 2b88caa3c7..8c6d930379 100644
--- a/news/2024/04/Linux101-3/index.html
+++ b/news/2024/04/Linux101-3/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/04/gathering-linux-graphics-journey/index.html b/news/2024/04/gathering-linux-graphics-journey/index.html
index 5d35e5c90f..85fe77d96e 100644
--- a/news/2024/04/gathering-linux-graphics-journey/index.html
+++ b/news/2024/04/gathering-linux-graphics-journey/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/05/403/index.html b/news/2024/05/403/index.html
index ddc52b968a..7a744aa1d5 100644
--- a/news/2024/05/403/index.html
+++ b/news/2024/05/403/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/08/SFD-Prep/index.html b/news/2024/08/SFD-Prep/index.html
index 95fff94416..77f1baa38b 100644
--- a/news/2024/08/SFD-Prep/index.html
+++ b/news/2024/08/SFD-Prep/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/09/2024-freshmen-course/index.html b/news/2024/09/2024-freshmen-course/index.html
index 1aa2ac96f1..7f780e9ce0 100644
--- a/news/2024/09/2024-freshmen-course/index.html
+++ b/news/2024/09/2024-freshmen-course/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/2024/09/SFD/index.html b/news/2024/09/SFD/index.html
index 3811d30ea7..bcf46b3199 100644
--- a/news/2024/09/SFD/index.html
+++ b/news/2024/09/SFD/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/21/index.html b/news/21/index.html
index 09878e9dc4..1dd36887b9 100644
--- a/news/21/index.html
+++ b/news/21/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/22/index.html b/news/22/index.html
index c1177e88fc..38fe969870 100644
--- a/news/22/index.html
+++ b/news/22/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/3/index.html b/news/3/index.html
index 32ede17a23..7a543c9ee4 100644
--- a/news/3/index.html
+++ b/news/3/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/4/index.html b/news/4/index.html
index e38da1bf23..af6b52758b 100644
--- a/news/4/index.html
+++ b/news/4/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/5/index.html b/news/5/index.html
index a66bf5ae76..41792ddda7 100644
--- a/news/5/index.html
+++ b/news/5/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/6/index.html b/news/6/index.html
index 77d1570f65..f689f04c4c 100644
--- a/news/6/index.html
+++ b/news/6/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/7/index.html b/news/7/index.html
index 5aa1f9746d..580129c240 100644
--- a/news/7/index.html
+++ b/news/7/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/8/index.html b/news/8/index.html
index 28adaf388b..9de8ca1da5 100644
--- a/news/8/index.html
+++ b/news/8/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/9/index.html b/news/9/index.html
index 15907fa82c..11be850334 100644
--- a/news/9/index.html
+++ b/news/9/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/news/index.html b/news/index.html
index 78805d6d4f..c2d23f52d8 100644
--- a/news/index.html
+++ b/news/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2/index.html b/planet/2/index.html
index ff9f9a516d..7a0caf8185 100644
--- a/planet/2/index.html
+++ b/planet/2/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2018/08/USTC-Linux-user-guide/index.html b/planet/2018/08/USTC-Linux-user-guide/index.html
index 1e0aa48d3e..03251b84ac 100644
--- a/planet/2018/08/USTC-Linux-user-guide/index.html
+++ b/planet/2018/08/USTC-Linux-user-guide/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2018/08/hello-lug-planet/index.html b/planet/2018/08/hello-lug-planet/index.html
index bae941e789..2cd7db70ce 100644
--- a/planet/2018/08/hello-lug-planet/index.html
+++ b/planet/2018/08/hello-lug-planet/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2018/10/PXE-intro/index.html b/planet/2018/10/PXE-intro/index.html
index 812e5cc86f..08db11a388 100644
--- a/planet/2018/10/PXE-intro/index.html
+++ b/planet/2018/10/PXE-intro/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2019/08/NFS-intro/index.html b/planet/2019/08/NFS-intro/index.html
index 9d2d2b6f23..4aa22d604a 100644
--- a/planet/2019/08/NFS-intro/index.html
+++ b/planet/2019/08/NFS-intro/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2019/09/how-to-use-nc/index.html b/planet/2019/09/how-to-use-nc/index.html
index 5e014ab4b7..07b37b8044 100644
--- a/planet/2019/09/how-to-use-nc/index.html
+++ b/planet/2019/09/how-to-use-nc/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2019/09/raspberry-4/index.html b/planet/2019/09/raspberry-4/index.html
index 18730a5961..8663c5ec8f 100644
--- a/planet/2019/09/raspberry-4/index.html
+++ b/planet/2019/09/raspberry-4/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2020/08/keeping-account-with-beancount/index.html b/planet/2020/08/keeping-account-with-beancount/index.html
index 64a94e5ebe..f8b3cf0138 100644
--- a/planet/2020/08/keeping-account-with-beancount/index.html
+++ b/planet/2020/08/keeping-account-with-beancount/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2020/12/tic-toc-in-kernel/index.html b/planet/2020/12/tic-toc-in-kernel/index.html
index a51b09346e..3e5577ff38 100644
--- a/planet/2020/12/tic-toc-in-kernel/index.html
+++ b/planet/2020/12/tic-toc-in-kernel/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
-
+
diff --git a/planet/2021/09/nethack-gitgud/index.html b/planet/2021/09/nethack-gitgud/index.html
index d45d51790c..31452587b2 100644
--- a/planet/2021/09/nethack-gitgud/index.html
+++ b/planet/2021/09/nethack-gitgud/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/2024/05/onedrive-backup-with-rclone/index.html b/planet/2024/05/onedrive-backup-with-rclone/index.html
index 9dd18ef37b..e9ab87b9ba 100644
--- a/planet/2024/05/onedrive-backup-with-rclone/index.html
+++ b/planet/2024/05/onedrive-backup-with-rclone/index.html
@@ -48,7 +48,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/3/index.html b/planet/3/index.html
index 656f26fd5c..a965b3f85e 100644
--- a/planet/3/index.html
+++ b/planet/3/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/planet/index.html b/planet/index.html
index fad271d18b..b54694e931 100644
--- a/planet/index.html
+++ b/planet/index.html
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/sitemap.xml b/sitemap.xml
index 8adde497b8..d90ddeca1b 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -990,7 +990,7 @@
https://lug.ustc.edu.cn/wiki/greenwarm/xen%E7%AE%80%E4%BB%8B%E4%B8%8E%E4%BD%BF%E7%94%A8/
- 2024-09-23T22:06:33+08:00
+ 2024-10-21T01:53:47+08:00
https://lug.ustc.edu.cn/wiki/
@@ -1194,7 +1194,7 @@
https://lug.ustc.edu.cn/wiki/scripts/wlt/
- 2024-04-19T20:52:57+08:00
+ 2024-10-21T01:51:41+08:00
https://lug.ustc.edu.cn/wiki/scripts/you_get/
@@ -1568,78 +1568,78 @@
https://lug.ustc.edu.cn/_wiki/sec/activity.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/charge.html
- 2024-09-23T22:06:05+08:00
+ 2024-10-21T01:52:30+08:00
https://lug.ustc.edu.cn/_wiki/sec/codes.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/contact.html
- 2024-09-23T22:06:05+08:00
+ 2024-10-21T01:52:30+08:00
https://lug.ustc.edu.cn/_wiki/sec/contest.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:27+08:00
https://lug.ustc.edu.cn/_wiki/sec/crypto.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/ctflab.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/deadline.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/home.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/lecture.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/nationalcontest.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:27+08:00
https://lug.ustc.edu.cn/_wiki/sec/news.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:27+08:00
https://lug.ustc.edu.cn/_wiki/sec/professor.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/provincecontest.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:27+08:00
https://lug.ustc.edu.cn/_wiki/sec/qqgroup.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/report.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/resource.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/studyplan.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:28+08:00
https://lug.ustc.edu.cn/_wiki/sec/subrepresent.html
- 2024-09-23T22:06:17+08:00
+ 2024-10-21T01:53:27+08:00
\ No newline at end of file
diff --git a/status/index.html b/status/index.html
index 224059fdc0..93af09fee9 100644
--- a/status/index.html
+++ b/status/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
@@ -139,15 +139,15 @@ 目录
- Build time
-
+
- Current time
- Loading...
- Source Git revision
-
-
-
a679c541a6
- TianKai Ma:
- feat: add 2024 sfd post
+
+ 269a358340
+ taoky:
+ wlt: Add notice about special characters like '&' in password
-
@@ -156,10 +156,10 @@
目录
- - This site is deployed from GitHub Actions build 750
+ - This site is deployed from GitHub Actions build 751
-
+
diff --git a/tags/beancount/index.html b/tags/beancount/index.html
index 293ca38739..9c8354489e 100644
--- a/tags/beancount/index.html
+++ b/tags/beancount/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/benchmark/index.html b/tags/benchmark/index.html
index 7c075838d9..08e1764e65 100644
--- a/tags/benchmark/index.html
+++ b/tags/benchmark/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/courses/index.html b/tags/courses/index.html
index dcf6a74a9e..ad5d29a857 100644
--- a/tags/courses/index.html
+++ b/tags/courses/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/debian/index.html b/tags/debian/index.html
index ad6dda1fe4..6ee45ef7c0 100644
--- a/tags/debian/index.html
+++ b/tags/debian/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/deepin/index.html b/tags/deepin/index.html
index a618cd9a96..9139d0d52c 100644
--- a/tags/deepin/index.html
+++ b/tags/deepin/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/ecard/index.html b/tags/ecard/index.html
index f01c071648..18e951c947 100644
--- a/tags/ecard/index.html
+++ b/tags/ecard/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/ftp-cn-debian-org/index.html b/tags/ftp-cn-debian-org/index.html
index 9999d58082..db63f75edf 100644
--- a/tags/ftp-cn-debian-org/index.html
+++ b/tags/ftp-cn-debian-org/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/gnome3/index.html b/tags/gnome3/index.html
index 589cf9c3d4..2e0bf2ed86 100644
--- a/tags/gnome3/index.html
+++ b/tags/gnome3/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/hackergame/index.html b/tags/hackergame/index.html
index eeaeeb0095..bfe7aa1cec 100644
--- a/tags/hackergame/index.html
+++ b/tags/hackergame/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/index.html b/tags/index.html
index 3de6d76a5c..974e42e73a 100644
--- a/tags/index.html
+++ b/tags/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/kernel/index.html b/tags/kernel/index.html
index 757f70907d..718500df64 100644
--- a/tags/kernel/index.html
+++ b/tags/kernel/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/linux-101/index.html b/tags/linux-101/index.html
index 3eb22044bb..6e5bae39a5 100644
--- a/tags/linux-101/index.html
+++ b/tags/linux-101/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/linux-install-party/index.html b/tags/linux-install-party/index.html
index 482d534260..3917f9a738 100644
--- a/tags/linux-install-party/index.html
+++ b/tags/linux-install-party/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/linux-server/index.html b/tags/linux-server/index.html
index ee16c33447..a1eade839f 100644
--- a/tags/linux-server/index.html
+++ b/tags/linux-server/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/linux-user-party/index.html b/tags/linux-user-party/index.html
index 0b8bc117f4..32a72450c7 100644
--- a/tags/linux-user-party/index.html
+++ b/tags/linux-user-party/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/linux/index.html b/tags/linux/index.html
index 2ade7a4ed0..ef184fa6b3 100644
--- a/tags/linux/index.html
+++ b/tags/linux/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/live/index.html b/tags/live/index.html
index ad2567dbad..f7f7532135 100644
--- a/tags/live/index.html
+++ b/tags/live/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/llvm/index.html b/tags/llvm/index.html
index c8a01f0533..e1d8f5dfb8 100644
--- a/tags/llvm/index.html
+++ b/tags/llvm/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/lug/index.html b/tags/lug/index.html
index 43e864fbaf..848364056c 100644
--- a/tags/lug/index.html
+++ b/tags/lug/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/lup/index.html b/tags/lup/index.html
index 2564576304..8e240ad684 100644
--- a/tags/lup/index.html
+++ b/tags/lup/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/meeting/index.html b/tags/meeting/index.html
index 93975ef34d..9ec3569a62 100644
--- a/tags/meeting/index.html
+++ b/tags/meeting/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/mirrors-ustc-edu-cn/index.html b/tags/mirrors-ustc-edu-cn/index.html
index 8e553e87b4..700a0f723a 100644
--- a/tags/mirrors-ustc-edu-cn/index.html
+++ b/tags/mirrors-ustc-edu-cn/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/mysql/index.html b/tags/mysql/index.html
index 4b94766d7d..992b054d38 100644
--- a/tags/mysql/index.html
+++ b/tags/mysql/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/netcat/index.html b/tags/netcat/index.html
index 4e0bf17768..393646921f 100644
--- a/tags/netcat/index.html
+++ b/tags/netcat/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/news/index.html b/tags/news/index.html
index 44bfb7aafb..5471c44707 100644
--- a/tags/news/index.html
+++ b/tags/news/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/nfs/index.html b/tags/nfs/index.html
index 3488b2531b..614bd851ba 100644
--- a/tags/nfs/index.html
+++ b/tags/nfs/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/nginx/index.html b/tags/nginx/index.html
index f812ac559a..0fe9643488 100644
--- a/tags/nginx/index.html
+++ b/tags/nginx/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/onedrive/index.html b/tags/onedrive/index.html
index 6f97bda3c1..d58a2b39e4 100644
--- a/tags/onedrive/index.html
+++ b/tags/onedrive/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/php/index.html b/tags/php/index.html
index 6f48695360..355b7fd586 100644
--- a/tags/php/index.html
+++ b/tags/php/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/pxe/index.html b/tags/pxe/index.html
index 3b5770b16d..93c2693431 100644
--- a/tags/pxe/index.html
+++ b/tags/pxe/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/python/index.html b/tags/python/index.html
index dc8c55d670..d89c09ff4d 100644
--- a/tags/python/index.html
+++ b/tags/python/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/rclone/index.html b/tags/rclone/index.html
index f2449a98e3..0b7936e276 100644
--- a/tags/rclone/index.html
+++ b/tags/rclone/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/reading-notes/index.html b/tags/reading-notes/index.html
index 6d3eefb43b..18157e25fd 100644
--- a/tags/reading-notes/index.html
+++ b/tags/reading-notes/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/server/index.html b/tags/server/index.html
index 9f49d81e8f..f08d5a0087 100644
--- a/tags/server/index.html
+++ b/tags/server/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/sfd/index.html b/tags/sfd/index.html
index 671d0caa2d..7631b9c328 100644
--- a/tags/sfd/index.html
+++ b/tags/sfd/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/software-freedom-day/index.html b/tags/software-freedom-day/index.html
index e6d9866467..88d76be807 100644
--- a/tags/software-freedom-day/index.html
+++ b/tags/software-freedom-day/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/tags/ustc-lug/index.html b/tags/ustc-lug/index.html
index 11307708cc..24ef7cf229 100644
--- a/tags/ustc-lug/index.html
+++ b/tags/ustc-lug/index.html
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\345\244\247\347\211\251\345\256\236\351\252\214/index.html" "b/tags/\345\244\247\347\211\251\345\256\236\351\252\214/index.html"
index ef8f08dcc3..1b1c2573fc 100644
--- "a/tags/\345\244\247\347\211\251\345\256\236\351\252\214/index.html"
+++ "b/tags/\345\244\247\347\211\251\345\256\236\351\252\214/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\345\264\224\347\201\217/index.html" "b/tags/\345\264\224\347\201\217/index.html"
index c386b1fa66..aaf75a564a 100644
--- "a/tags/\345\264\224\347\201\217/index.html"
+++ "b/tags/\345\264\224\347\201\217/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\345\267\246\346\240\274\351\235\236/index.html" "b/tags/\345\267\246\346\240\274\351\235\236/index.html"
index e76fa45295..b97830ad37 100644
--- "a/tags/\345\267\246\346\240\274\351\235\236/index.html"
+++ "b/tags/\345\267\246\346\240\274\351\235\236/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\345\274\240\347\204\225\346\235\260/index.html" "b/tags/\345\274\240\347\204\225\346\235\260/index.html"
index ab08ea70b3..148158b0a5 100644
--- "a/tags/\345\274\240\347\204\225\346\235\260/index.html"
+++ "b/tags/\345\274\240\347\204\225\346\235\260/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\346\215\242\345\261\212/index.html" "b/tags/\346\215\242\345\261\212/index.html"
index 963d57cfa1..770d804527 100644
--- "a/tags/\346\215\242\345\261\212/index.html"
+++ "b/tags/\346\215\242\345\261\212/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\346\233\276\351\224\256/index.html" "b/tags/\346\233\276\351\224\256/index.html"
index 10d57f452e..bee8a3497a 100644
--- "a/tags/\346\233\276\351\224\256/index.html"
+++ "b/tags/\346\233\276\351\224\256/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\346\234\215\345\212\241\345\231\250/index.html" "b/tags/\346\234\215\345\212\241\345\231\250/index.html"
index 8850a6c022..dba1330e00 100644
--- "a/tags/\346\234\215\345\212\241\345\231\250/index.html"
+++ "b/tags/\346\234\215\345\212\241\345\231\250/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\346\235\216\344\274\232\346\260\221/index.html" "b/tags/\346\235\216\344\274\232\346\260\221/index.html"
index c18272cc2d..0aa5214191 100644
--- "a/tags/\346\235\216\344\274\232\346\260\221/index.html"
+++ "b/tags/\346\235\216\344\274\232\346\260\221/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\346\240\221\350\216\223\346\264\276/index.html" "b/tags/\346\240\221\350\216\223\346\264\276/index.html"
index 9abcb26822..1bbdea86b4 100644
--- "a/tags/\346\240\221\350\216\223\346\264\276/index.html"
+++ "b/tags/\346\240\221\350\216\223\346\264\276/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\346\270\270\346\210\217/index.html" "b/tags/\346\270\270\346\210\217/index.html"
index f0697d1326..b20dee0ded 100644
--- "a/tags/\346\270\270\346\210\217/index.html"
+++ "b/tags/\346\270\270\346\210\217/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\347\211\210\350\201\232/index.html" "b/tags/\347\211\210\350\201\232/index.html"
index a8b275bbdd..7f44c449b0 100644
--- "a/tags/\347\211\210\350\201\232/index.html"
+++ "b/tags/\347\211\210\350\201\232/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\347\211\210\350\241\253/index.html" "b/tags/\347\211\210\350\241\253/index.html"
index 72fbaa63d3..b0955e8346 100644
--- "a/tags/\347\211\210\350\241\253/index.html"
+++ "b/tags/\347\211\210\350\241\253/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\347\275\221\347\273\234\344\270\255\345\277\203/index.html" "b/tags/\347\275\221\347\273\234\344\270\255\345\277\203/index.html"
index d7a086698f..2c5eff3b84 100644
--- "a/tags/\347\275\221\347\273\234\344\270\255\345\277\203/index.html"
+++ "b/tags/\347\275\221\347\273\234\344\270\255\345\277\203/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\347\275\221\347\273\234\351\200\232/index.html" "b/tags/\347\275\221\347\273\234\351\200\232/index.html"
index 5c3d18ca8e..405c44ba94 100644
--- "a/tags/\347\275\221\347\273\234\351\200\232/index.html"
+++ "b/tags/\347\275\221\347\273\234\351\200\232/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\350\212\261\347\265\256/index.html" "b/tags/\350\212\261\347\265\256/index.html"
index db71bd27ae..825f15140d 100644
--- "a/tags/\350\212\261\347\265\256/index.html"
+++ "b/tags/\350\212\261\347\265\256/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\350\266\205\347\256\227\344\270\255\345\277\203/index.html" "b/tags/\350\266\205\347\256\227\344\270\255\345\277\203/index.html"
index b48341fed0..d988c9f938 100644
--- "a/tags/\350\266\205\347\256\227\344\270\255\345\277\203/index.html"
+++ "b/tags/\350\266\205\347\256\227\344\270\255\345\277\203/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\351\203\221\345\255\220\346\266\265/index.html" "b/tags/\351\203\221\345\255\220\346\266\265/index.html"
index 2dad4bd88a..edff46e94d 100644
--- "a/tags/\351\203\221\345\255\220\346\266\265/index.html"
+++ "b/tags/\351\203\221\345\255\220\346\266\265/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/tags/\351\207\221\345\255\234\350\276\276/index.html" "b/tags/\351\207\221\345\255\234\350\276\276/index.html"
index 4a9d5223c2..681463b3e1 100644
--- "a/tags/\351\207\221\345\255\234\350\276\276/index.html"
+++ "b/tags/\351\207\221\345\255\234\350\276\276/index.html"
@@ -44,7 +44,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/doc/editing/index.html b/wiki/doc/editing/index.html
index 32798daf24..8d4ce0a98c 100644
--- a/wiki/doc/editing/index.html
+++ b/wiki/doc/editing/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/doc/howtoask/index.html b/wiki/doc/howtoask/index.html
index 0450e046f1..00b288d2c2 100644
--- a/wiki/doc/howtoask/index.html
+++ b/wiki/doc/howtoask/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/doc/smart-questions/index.html b/wiki/doc/smart-questions/index.html
index 5db594607f..064c2be652 100644
--- a/wiki/doc/smart-questions/index.html
+++ b/wiki/doc/smart-questions/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/doc/ustcnet-faq/index.html b/wiki/doc/ustcnet-faq/index.html
index ffad479bc8..6b414b95af 100644
--- a/wiki/doc/ustcnet-faq/index.html
+++ b/wiki/doc/ustcnet-faq/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/index.html b/wiki/greenwarm/index.html
index d0ea80e85f..8a22947ea9 100644
--- a/wiki/greenwarm/index.html
+++ b/wiki/greenwarm/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/linux_summary/index.html b/wiki/greenwarm/linux_summary/index.html
index 5750b232ce..3c25b08251 100644
--- a/wiki/greenwarm/linux_summary/index.html
+++ b/wiki/greenwarm/linux_summary/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/livedist/index.html b/wiki/greenwarm/livedist/index.html
index cb760c1f93..70e28ce984 100644
--- a/wiki/greenwarm/livedist/index.html
+++ b/wiki/greenwarm/livedist/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/multimedia/index.html b/wiki/greenwarm/multimedia/index.html
index ce3e0d5d45..c1bedd935b 100644
--- a/wiki/greenwarm/multimedia/index.html
+++ b/wiki/greenwarm/multimedia/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/remotedesktop/index.html b/wiki/greenwarm/remotedesktop/index.html
index 4da7c80b4b..1ff7a9c54c 100644
--- a/wiki/greenwarm/remotedesktop/index.html
+++ b/wiki/greenwarm/remotedesktop/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/virtualization/index.html b/wiki/greenwarm/virtualization/index.html
index 08c0bcc529..3133fb9175 100644
--- a/wiki/greenwarm/virtualization/index.html
+++ b/wiki/greenwarm/virtualization/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git a/wiki/greenwarm/win32free/index.html b/wiki/greenwarm/win32free/index.html
index 6bcfaf0162..115faa141f 100644
--- a/wiki/greenwarm/win32free/index.html
+++ b/wiki/greenwarm/win32free/index.html
@@ -47,7 +47,7 @@
window.enable_copy_code_button = true;
-
+
diff --git "a/wiki/greenwarm/xen\347\256\200\344\273\213\344\270\216\344\275\277\347\224\250/index.html" "b/wiki/greenwarm/xen\347\256\200\344\273\213\344\270\216\344\275\277\347\224\250/index.html"
index 256c68949a..8440639eba 100644
--- "a/wiki/greenwarm/xen\347\256\200\344\273\213\344\270\216\344\275\277\347\224\250/index.html"
+++ "b/wiki/greenwarm/xen\347\256\200\344\273\213\344\270\216\344\275\277\347\224\250/index.html"
@@ -19,7 +19,7 @@
-
+
@@ -46,7 +46,7 @@
window.enable_copy_code_button = true;
-
+
@@ -175,7 +175,7 @@
-
+