Skip to content

Commit

Permalink
新增 N1安装Arch
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenQy committed Jan 15, 2024
1 parent 359ae6c commit 5651fff
Show file tree
Hide file tree
Showing 24 changed files with 644 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 78 additions & 0 deletions content/post/2024/01/phicomm-n1安装ArchLinuxARM/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
---
title: "Phicomm N1安装ArchLinuxARM"
date: 2024-01-15T22:15:46+08:00
draft: true
---

## 前言

**Phicomm N1**是非常热门的盒子,其`OpenWrt``Armbian`的资源非常丰富。之前我的N1盒子一直运行`OpenWrt`,但`OpenWrt`内核无法运行`dae`(至少我没能打包出支持bpf的内核),`sing-box`的前端我不太喜欢,因此有了更换系统的想法。

## 整体思路

因为`s905`的分区比较复杂,我不敢直接操作,因此想先在`emmc`上安装`Armbian`,保留启动文件,删除其他文件,再将`ArchLinuxARM`的文件解压到相应位置,完成安装。

## 制作U盘

可以在[ophub](https://github.com/ophub/amlogic-s9xxx-armbian/releases/)上下载`Armbian`镜像,比如:[Armbian_24.2.0_amlogic_s905d_jammy_6.6.11_server_2024.01.13.img.g](https://github.com/ophub/amlogic-s9xxx-armbian/releases/download/Armbian_jammy_save_2024.01/Armbian_24.2.0_amlogic_s905d_jammy_6.6.11_server_2024.01.13.img.gz),解压后DD到U盘
```bash
gzip -d Armbian_24.2.0_amlogic_s905d_jammy_6.6.11_server_2024.01.13.img.gz
sudo dd if=Armbian_24.2.0_amlogic_s905d_jammy_6.6.11_server_2024.01.13.img of=/dev/sda status=progress
```

## 写入EMMC

插入U盘后通电,盒子会正常启动并进入系统,默认用户名:root,默认密码:1234,然后通过`Armbian`自带的命令写入EMMC
```bash
armbian-install
```

## 保留必要文件

写入完成后,挂载EMMC
```bash
mount /dev/mmcblk1p2 /mnt
mount /dev/mmcblk1p1 /mnt/boot
```
保留`/mnt/etc/fstab``/mnt/boot/uEnv.txt`文件,其余文件全部删除

## 解压ArchLinuxARM压缩包

下载[ArchLinuxARM-aarch64-latest.tar.gz](https://mirrors.ustc.edu.cn/archlinuxarm/os/ArchLinuxARM-aarch64-latest.tar.gz)并解压到挂载位置
```bash
tar -xpf ArchLinuxARM-aarch64-latest.tar.gz -C /mnt
```
并用保留的`/mnt/etc/fstab`替换当前的,文件内容大概如下所示:
```txt
UUID=8128419f-7683-4714-bf23-5c08482da669 / btrfs defaults,noatime,compress=zstd:6 0 1
LABEL=BOOT_EMMC /boot vfat defaults 0 2
tmpfs /tmp tmpfs defaults,nosuid 0 0
```
下载[new-uboot-for-N1](https://github.com/cattyhouse/new-uboot-for-N1)的启动文件,实测需要`emmc_autoscript``boot`,放到`/mnt/boot`目录,并创建`/mnt/boot/extlinux/extlinux.conf`文件,内容大概如下所示,主要是**APPEND**字段内容要参考`/mnt/boot/uEnv.txt`文件。
```txt
LABEL Arch Linux ARM
LINUX /Image.gz
INITRD /initramfs-linux.img
FDT /dtbs/amlogic/meson-gxl-s905d-phicomm-n1.dtb
APPEND root=UUID=8128419f-7683-4714-bf23-5c08482da669 rootflags=compress=zstd:6 rw rootfstype=btrfs console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 loglevel=1
```

## 启动新系统

关机后断电,然后拔出U盘后通电,盒子会启动进入`ArchLinuxARM`系统。
![系统截图](2024-01-15_22:46:49.png)

## 遇到的坑

1、进入`ArchLinuxARM`系统后没有网络,需要连接键盘,对系统进行初始化
```bash
pacman-key --init
pacman-key --populate archlinuxarm
```
之后才能联网,通过ssh连接。

2、`Armbian`系统/boot分区仅保留`dtb``emmc_autoscript``extlinux``u-boot.emmc``uInitrd``zImag`是可以正常启动的,但使用`Armbian``emmc_autoscript``u-boot.emmc`无法启动`ArchLinuxARM`,而使用[new-uboot-for-N1](https://github.com/cattyhouse/new-uboot-for-N1)`emmc_autoscript``boot`就能正常启动,原因未知。

## 下一步计划

`ArchLinux`是我很久之前使用的系统,现在我已经转为使用`NixOS`,所以希望N1盒子也能运行`NixOS`,目前还在摸索中。
1 change: 1 addition & 0 deletions public/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blog.940940.xyz
11 changes: 11 additions & 0 deletions public/categories/index.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on Zenith&#39;s Blog</title>
<link>https://blog.940940.xyz/categories/</link>
<description>Recent content in Categories on Zenith&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<atom:link href="https://blog.940940.xyz/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>
Binary file added public/favicon.ico
Binary file not shown.
82 changes: 82 additions & 0 deletions public/index.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Zenith&#39;s Blog</title>
<link>https://blog.940940.xyz/</link>
<description>Recent content on Zenith&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<lastBuildDate>Thu, 16 Sep 2021 18:02:28 +0800</lastBuildDate>
<atom:link href="https://blog.940940.xyz/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>现有系统安装nixos</title>
<link>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85nixos/</link>
<pubDate>Thu, 16 Sep 2021 18:02:28 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85nixos/</guid>
<description>前言 最近改用nixos,当然希望vps也能安装相同的系统。virmach家可通过netboot,xyz安装,比较方便。但手上有一台vps,商</description>
</item>
<item>
<title>现有系统安装ArchLinux(ARM篇)</title>
<link>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinuxarm%E7%AF%87/</link>
<pubDate>Fri, 06 Aug 2021 18:29:32 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinuxarm%E7%AF%87/</guid>
<description>前言 之前写过现有系统安装ArchLinux,针对的是x86架构,后来甲骨文推出了arm架构的vps,虽然也重新安装了ArchLinuxARM</description>
</item>
<item>
<title>Vps一键脚本收集</title>
<link>https://blog.940940.xyz/p/vps%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E6%94%B6%E9%9B%86/</link>
<pubDate>Sat, 05 Dec 2020 11:31:05 +0800</pubDate>
<guid>https://blog.940940.xyz/p/vps%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E6%94%B6%E9%9B%86/</guid>
<description>前言 一般只适用于 Debian、Ubuntu、Contos、Redhat等主流服务器发行版 BBR 手动开启,无需脚本 1 2 3 4 echo &amp;#34;net.core.default_qdisc=fq&amp;#34; &amp;gt;&amp;gt; /etc/sysctl.conf echo &amp;#34;net.ipv4.tcp_congestion_control=bbr&amp;#34; &amp;gt;&amp;gt; /etc/sysctl.conf sysctl -p lsmod |</description>
</item>
<item>
<title>现有系统安装ArchLinux</title>
<link>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinux/</link>
<pubDate>Fri, 04 Dec 2020 19:29:32 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinux/</guid>
<description>前言 本人对比较喜欢ArchLinux,使用的vps基本对会使用vps2arch脚本,将系统变更为ArchLinux。今天从OracleClo</description>
</item>
<item>
<title>My Android App List</title>
<link>https://blog.940940.xyz/p/my-android-app-list/</link>
<pubDate>Sat, 24 Oct 2020 11:37:29 +0800</pubDate>
<guid>https://blog.940940.xyz/p/my-android-app-list/</guid>
<description>商店 名称 链接 版本 备注 移动惠生活 点击下载 最新 应用宝 国网商旅云 点击下载 最新 应用宝 账号本子 点击下载 最新 酷安 轻启动 点击下载 最新 酷安 幕布 点击下载 最新 酷</description>
</item>
<item>
<title>魔百盒CM201-2刷机</title>
<link>https://blog.940940.xyz/p/%E9%AD%94%E7%99%BE%E7%9B%92cm201-2%E5%88%B7%E6%9C%BA/</link>
<pubDate>Sat, 11 Apr 2020 19:37:29 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E9%AD%94%E7%99%BE%E7%9B%92cm201-2%E5%88%B7%E6%9C%BA/</guid>
<description>设备简介 key value 名称 魔百盒 型号 CM201-2 芯片 MV300 代工 朝歌 闪存 nand 进入Recovery 机顶盒完全断电,通电后立即不停交替按遥控器菜单键和音量减键,即可进入Re</description>
</item>
<item>
<title>2020年计划</title>
<link>https://blog.940940.xyz/p/2020%E5%B9%B4%E8%AE%A1%E5%88%92/</link>
<pubDate>Wed, 01 Jan 2020 19:37:29 +0800</pubDate>
<guid>https://blog.940940.xyz/p/2020%E5%B9%B4%E8%AE%A1%E5%88%92/</guid>
<description>身体方面 增加运动,体重下降5kg,腹部赘肉明显减少 人文方面 泛读10本文学相关书籍,2本名著 尽量背诵中学时期古诗词,传送门 工作方面 报考一级注册</description>
</item>
<item>
<title>黑苹果安装记录</title>
<link>https://blog.940940.xyz/p/%E9%BB%91%E8%8B%B9%E6%9E%9C%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</link>
<pubDate>Sun, 22 Dec 2019 21:28:03 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E9%BB%91%E8%8B%B9%E6%9E%9C%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</guid>
<description>电脑主要配置 硬件 型号 备注 CPU E3-1231 v3 3.4G Hz 主板 华硕 B85M-G plus 显卡 Nvidia GTX 960 微星 声卡 realtek ALC887 网卡 realtek RTL8168/8111/8112 安装过程 下载镜像 受N卡驱动限制,最高只能安装10.13.6版本的</description>
</item>
<item>
<title>Archives</title>
<link>https://blog.940940.xyz/archives/</link>
<pubDate>Tue, 28 May 2019 00:00:00 +0000</pubDate>
<guid>https://blog.940940.xyz/archives/</guid>
<description></description>
</item>
<item>
<title>Search</title>
<link>https://blog.940940.xyz/search/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://blog.940940.xyz/search/</guid>
<description></description>
</item>
</channel>
</rss>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/p/黑苹果安装记录/CLOVER.zip
Binary file not shown.
26 changes: 26 additions & 0 deletions public/page/index.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Pages on Zenith&#39;s Blog</title>
<link>https://blog.940940.xyz/page/</link>
<description>Recent content in Pages on Zenith&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<lastBuildDate>Tue, 28 May 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://blog.940940.xyz/page/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Archives</title>
<link>https://blog.940940.xyz/archives/</link>
<pubDate>Tue, 28 May 2019 00:00:00 +0000</pubDate>
<guid>https://blog.940940.xyz/archives/</guid>
<description></description>
</item>
<item>
<title>Search</title>
<link>https://blog.940940.xyz/search/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://blog.940940.xyz/search/</guid>
<description></description>
</item>
</channel>
</rss>
68 changes: 68 additions & 0 deletions public/post/index.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on Zenith&#39;s Blog</title>
<link>https://blog.940940.xyz/post/</link>
<description>Recent content in Posts on Zenith&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<lastBuildDate>Thu, 16 Sep 2021 18:02:28 +0800</lastBuildDate>
<atom:link href="https://blog.940940.xyz/post/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>现有系统安装nixos</title>
<link>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85nixos/</link>
<pubDate>Thu, 16 Sep 2021 18:02:28 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85nixos/</guid>
<description>前言 最近改用nixos,当然希望vps也能安装相同的系统。virmach家可通过netboot,xyz安装,比较方便。但手上有一台vps,商</description>
</item>
<item>
<title>现有系统安装ArchLinux(ARM篇)</title>
<link>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinuxarm%E7%AF%87/</link>
<pubDate>Fri, 06 Aug 2021 18:29:32 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinuxarm%E7%AF%87/</guid>
<description>前言 之前写过现有系统安装ArchLinux,针对的是x86架构,后来甲骨文推出了arm架构的vps,虽然也重新安装了ArchLinuxARM</description>
</item>
<item>
<title>Vps一键脚本收集</title>
<link>https://blog.940940.xyz/p/vps%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E6%94%B6%E9%9B%86/</link>
<pubDate>Sat, 05 Dec 2020 11:31:05 +0800</pubDate>
<guid>https://blog.940940.xyz/p/vps%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E6%94%B6%E9%9B%86/</guid>
<description>前言 一般只适用于 Debian、Ubuntu、Contos、Redhat等主流服务器发行版 BBR 手动开启,无需脚本 1 2 3 4 echo &amp;#34;net.core.default_qdisc=fq&amp;#34; &amp;gt;&amp;gt; /etc/sysctl.conf echo &amp;#34;net.ipv4.tcp_congestion_control=bbr&amp;#34; &amp;gt;&amp;gt; /etc/sysctl.conf sysctl -p lsmod |</description>
</item>
<item>
<title>现有系统安装ArchLinux</title>
<link>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinux/</link>
<pubDate>Fri, 04 Dec 2020 19:29:32 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinux/</guid>
<description>前言 本人对比较喜欢ArchLinux,使用的vps基本对会使用vps2arch脚本,将系统变更为ArchLinux。今天从OracleClo</description>
</item>
<item>
<title>My Android App List</title>
<link>https://blog.940940.xyz/p/my-android-app-list/</link>
<pubDate>Sat, 24 Oct 2020 11:37:29 +0800</pubDate>
<guid>https://blog.940940.xyz/p/my-android-app-list/</guid>
<description>商店 名称 链接 版本 备注 移动惠生活 点击下载 最新 应用宝 国网商旅云 点击下载 最新 应用宝 账号本子 点击下载 最新 酷安 轻启动 点击下载 最新 酷安 幕布 点击下载 最新 酷</description>
</item>
<item>
<title>魔百盒CM201-2刷机</title>
<link>https://blog.940940.xyz/p/%E9%AD%94%E7%99%BE%E7%9B%92cm201-2%E5%88%B7%E6%9C%BA/</link>
<pubDate>Sat, 11 Apr 2020 19:37:29 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E9%AD%94%E7%99%BE%E7%9B%92cm201-2%E5%88%B7%E6%9C%BA/</guid>
<description>设备简介 key value 名称 魔百盒 型号 CM201-2 芯片 MV300 代工 朝歌 闪存 nand 进入Recovery 机顶盒完全断电,通电后立即不停交替按遥控器菜单键和音量减键,即可进入Re</description>
</item>
<item>
<title>2020年计划</title>
<link>https://blog.940940.xyz/p/2020%E5%B9%B4%E8%AE%A1%E5%88%92/</link>
<pubDate>Wed, 01 Jan 2020 19:37:29 +0800</pubDate>
<guid>https://blog.940940.xyz/p/2020%E5%B9%B4%E8%AE%A1%E5%88%92/</guid>
<description>身体方面 增加运动,体重下降5kg,腹部赘肉明显减少 人文方面 泛读10本文学相关书籍,2本名著 尽量背诵中学时期古诗词,传送门 工作方面 报考一级注册</description>
</item>
<item>
<title>黑苹果安装记录</title>
<link>https://blog.940940.xyz/p/%E9%BB%91%E8%8B%B9%E6%9E%9C%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</link>
<pubDate>Sun, 22 Dec 2019 21:28:03 +0800</pubDate>
<guid>https://blog.940940.xyz/p/%E9%BB%91%E8%8B%B9%E6%9E%9C%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</guid>
<description>电脑主要配置 硬件 型号 备注 CPU E3-1231 v3 3.4G Hz 主板 华硕 B85M-G plus 显卡 Nvidia GTX 960 微星 声卡 realtek ALC887 网卡 realtek RTL8168/8111/8112 安装过程 下载镜像 受N卡驱动限制,最高只能安装10.13.6版本的</description>
</item>
</channel>
</rss>
78 changes: 78 additions & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://blog.940940.xyz/tags/nixos/</loc>
<lastmod>2021-09-16T18:02:28+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/post/</loc>
<lastmod>2021-09-16T18:02:28+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/</loc>
<lastmod>2021-09-16T18:02:28+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/vps/</loc>
<lastmod>2021-09-16T18:02:28+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/</loc>
<lastmod>2021-09-16T18:02:28+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85nixos/</loc>
<lastmod>2021-09-16T18:02:28+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/archlinux/</loc>
<lastmod>2021-08-06T18:29:32+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinuxarm%E7%AF%87/</loc>
<lastmod>2021-08-06T18:29:32+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/vps%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E6%94%B6%E9%9B%86/</loc>
<lastmod>2020-12-05T11:31:05+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/%E7%8E%B0%E6%9C%89%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85archlinux/</loc>
<lastmod>2020-12-04T19:29:32+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/adnroid/</loc>
<lastmod>2020-10-24T11:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/app/</loc>
<lastmod>2020-10-24T11:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/my-android-app-list/</loc>
<lastmod>2020-10-24T11:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/%E6%9C%BA%E9%A1%B6%E7%9B%92/</loc>
<lastmod>2020-04-11T19:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/%E9%AD%94%E7%99%BE%E7%9B%92/</loc>
<lastmod>2020-04-11T19:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/%E9%AD%94%E7%99%BE%E7%9B%92cm201-2%E5%88%B7%E6%9C%BA/</loc>
<lastmod>2020-04-11T19:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/%E5%88%B7%E6%9C%BA/</loc>
<lastmod>2020-04-11T19:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/2020%E5%B9%B4%E8%AE%A1%E5%88%92/</loc>
<lastmod>2020-01-01T19:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/%E8%AE%A1%E5%88%92/</loc>
<lastmod>2020-01-01T19:37:29+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/tags/%E9%BB%91%E8%8B%B9%E6%9E%9C/</loc>
<lastmod>2019-12-22T21:28:03+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/p/%E9%BB%91%E8%8B%B9%E6%9E%9C%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</loc>
<lastmod>2019-12-22T21:28:03+08:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/archives/</loc>
<lastmod>2019-05-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/page/</loc>
<lastmod>2019-05-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://blog.940940.xyz/categories/</loc>
</url><url>
<loc>https://blog.940940.xyz/search/</loc>
</url>
</urlset>
Loading

0 comments on commit 5651fff

Please sign in to comment.