作者: laoding

78 篇文章

Linux系统中格式化和挂载U盘
1.查看U盘及其分区 lsblk   2.删除分区 sudo fdisk /dev/sda 运行后依次输入参数,并重复操作,直到删除所有分区   Command (m for help): m Command (m for help): d Partition number (1,2,3, default 3): 1 3.创建分…
Zerotier一些常用的命令
1.安装 curl -s https://install.zerotier.com | sudo bash 2.加入网络 sudo zerotier-cli join <network_id> 3.查看状态 sudo zerotier-cli status zerotier-cli listnetworks 4.离开网络 sudo ze…
斐讯N1安装Armbian系统及优化设置
1.Armbian下载 百度百科:Armbian是轻量级的Debian系统和为ARM开发板专门发行并重新编译的Debian系统(Ubuntu派生自Debian)。 官网:Armbian 2023年06月26更新: amlogic-s9xxx-armbian仓库 2.使用rufus等工具将Armbian镜像写入U盘并启动 使用U盘插入N1例子靠近HD…
nps内网穿透常用操作
1.客户端和服务器端下载 Linux arm架构客户端 https://github.com/ehang-io/nps/releases/download/v0.26.10/linux_arm_v7_client.tar.gz Linux x86_64架构服务器端 https://github.com/ehang-io/nps/releases/d…
搭建的中国传统农历日历API
1.代码演示 curl -X 'POST' \ 'http://c2n.e-123.cn:8081/api/lunar' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "year": 2024, "month": 4, "day": 23,…
如何翻译WordPress插件
1.检查插件配置文件是否加载语言翻译文件及路径(以simple-location插件为便) # 插件配置文件位置 index/wp-content/plugins/simple-location/simple-location.php # 加载翻译文件的代码 add_action( 'plugins_loaded', function() { lo…