打赏
上一页 1 2 3 4 5 6 7 8 9 ··· 54 下一页
摘要: Ubuntu arm环境安装 (1.)首先需要有一个Ubuntu环境,不论物理机还是虚拟机 (2.)安装qemu-system-aarch64 # 安装完后,默认会安装在/usr/bin目录 sudo apt install -y qemu-system-arm (3.)下载UEFI固件 # 创建目 阅读全文
posted @ 2022-06-17 08:31 苍山落暮 阅读(2786) 评论(0) 推荐(0)
摘要: git 分支重命名 (1.) 重命名远程分支对应的本地分支 git branch -m oldName newName (2.) 删除远程分支 git push --delete origin oldName (3.) 上传新命名的本地分支 git push origin newName (4.) 阅读全文
posted @ 2022-06-17 08:29 苍山落暮 阅读(661) 评论(0) 推荐(0)
摘要: 1. SystemTap工具使用 1.工具下载 https://sourceware.org/systemtap/ftp/releases/ 2. unixSocket抓包 2.1 Socat抓包 sudo mv /path/to/sock /path/to/sock.original sudo s 阅读全文
posted @ 2022-06-10 16:37 苍山落暮 阅读(1730) 评论(0) 推荐(0)
摘要: LevelDB查看工具 (1.)安装JAVA环境 https://www.oracle.com/java/technologies/downloads/#jdk18-windows (2.) 下载LevelDBViewer.jar包 https://github.com/SuperMarcus/Le 阅读全文
posted @ 2022-06-10 16:31 苍山落暮 阅读(3714) 评论(0) 推荐(0)
摘要: git submodule使用 (1.)常用命令 git clone <repository> --recursive //递归的方式克隆整个项目 git submodule add <repository> <path> //添加子模块 git submodule init //初始化子模块 gi 阅读全文
posted @ 2022-06-10 15:51 苍山落暮 阅读(299) 评论(0) 推荐(0)
摘要: csdn复制问题 (1.)使用油泼脚本 // 将所有登录复制按钮变成全选 document.querySelectorAll(".hljs-button").forEach(function(item) { item.dataset.title = "复制全部"; return item; }) / 阅读全文
posted @ 2022-06-10 15:50 苍山落暮 阅读(264) 评论(0) 推荐(0)
摘要: golang panic打印 (1.)示例代码 package main import ( "fmt" "os" "runtime" ) func main() { defer func() { if e := recover(); e != nil { panic.PrintStack() os. 阅读全文
posted @ 2022-06-08 09:46 苍山落暮 阅读(517) 评论(0) 推荐(0)
摘要: 远程调试配置 (1.)将arm编译的dlv放到环境变量可以执行的地方 # dlv arm环境编译 git clone https://github.com/go-delve/delve cd delve/cmd/dlv GOARM=7 GOARCH=arm64 GOOS=linux go build 阅读全文
posted @ 2022-06-08 09:45 苍山落暮 阅读(510) 评论(0) 推荐(0)
摘要: Fiber框架 1.安装 go get google.golang.org/protobuf 阅读全文
posted @ 2022-06-08 09:44 苍山落暮 阅读(151) 评论(0) 推荐(0)
摘要: golang堆栈分析 (1.)修改unlimit配置 ulimit -c unlimited (2.) 设置环境变量,运行程序,发生panic会生成core文件 env GOTRACEBACK=crash ./test # 设置cordump 输出格式和输出路径 echo "/root/core_d 阅读全文
posted @ 2022-06-08 09:44 苍山落暮 阅读(549) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 54 下一页