摘要: step1:本地回退到相应的版本git reset --hard <版本号>git reset --hard 203738c9ccad7d95b728c8d9d287f2ff24eaaca2 step2:远程仓库也退到相应的版本git push origin <分支名> --forcegit pus 阅读全文
posted @ 2021-11-10 11:06 Russ_Cox 阅读(16) 评论(0) 推荐(0)
摘要: https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/preface.md 阅读全文
posted @ 2021-11-03 17:26 Russ_Cox 阅读(55) 评论(0) 推荐(0)
摘要: gdb退出调试命令界面:q 当生成coredump文件之后: gdb 执行文件 coredump文件 然后bt就可以看程序在哪里挂了 阅读全文
posted @ 2021-08-11 15:55 Russ_Cox 阅读(29) 评论(0) 推荐(0)
摘要: gcc main.c -o main 将文件编译成可执行文件 阅读全文
posted @ 2021-08-11 15:17 Russ_Cox 阅读(25) 评论(0) 推荐(0)
摘要: ./dpdk-devbind.py -b igb_uio 0000:13:00.0 绑定网卡 ./dpdk-devbind.py -s 查看网卡的绑定状态 Error - no supported modules(DPDK driver) are loaded 解决办法: [root@localho 阅读全文
posted @ 2021-08-03 13:46 Russ_Cox 阅读(1071) 评论(0) 推荐(0)
摘要: ip addr 阅读全文
posted @ 2021-08-03 11:29 Russ_Cox 阅读(24) 评论(0) 推荐(0)
摘要: 客户端敲的灌包命令: iperf3.exe -u -c 192.168.20.165 -p 5201 -n 1 -l 100 服务端敲的灌包命令: iperf3.exe -s 阅读全文
posted @ 2021-07-08 17:34 Russ_Cox 阅读(382) 评论(0) 推荐(0)
摘要: 设置过滤条件: udp || ip.src==xx.xx.xx.xx || ip.dst==xx.xx.xx.xx ||或连接多个过滤条件 &&并连接多个并集过滤条件 阅读全文
posted @ 2021-07-08 15:52 Russ_Cox 阅读(73) 评论(0) 推荐(0)
摘要: flag包解析命令行参数 runtime包多线程分配cpu数目 signal包使用接受处理操作系统的命令 状态机 阅读全文
posted @ 2021-07-05 16:35 Russ_Cox 阅读(41) 评论(0) 推荐(0)
摘要: 嗯~世界上第二好的语言,这里有你可能想要的???? 在 GitHub 上稳定更新,觉得不错请点个 Star ❤️ 如转载分享,请保留出处,谢谢 ???? 原文地址: https://shockerli.net/post/go... GitHub: https://github.com/shocker 阅读全文
posted @ 2021-07-05 15:47 Russ_Cox 阅读(824) 评论(0) 推荐(0)