摘要:
Linux的KVM虚拟机虚拟网络‘default’NAT未激活 解决方法: //查看是否开启 sudo virsh net-list --all //开启网络 sudo virsh net-start --network default //网络default标记为自动启动 sudo virsh n 阅读全文
摘要:
git log --author="user" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 + $2 } END { printf "added lines: %s, removed lines: %s, 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/2939246/202405/2939246-20240511173035072-1695207173.png) 阅读全文
摘要:
obj-m:=hds.o #根据make的自动推导原则,make会自动将源程序hds.c编译成目标程序hds.o。 #所有在配置文件中标记为-m的模块将被编译成可动态加载进内核的模块。即后缀为.ko的文件。 CURRENT_PATH:=$(shell pwd) #参数化,将模块源码路径保存在CURR 阅读全文
摘要:
tasks.json { "version": "2.0.0", "tasks": [ { "taskName": "shell", // 任务名称,与launch.json的preLaunchTask相对应 "command": [ "export PKG_CONFIG_PATH=/usr/loc 阅读全文
摘要:
Failed to connect to the remote extension host server (Error: WebSocket close with status code 1006) https://zhuanlan.zhihu.com/p/424569389 阅读全文
摘要:
通常ls列出的文件,想直接管道通过rm -rf删除是无效的.这时就要配合命令xargs使用了: 例如: 按时间排序,删除最后的10个文件 ls -t | tail -10 | xargs rm -rf 当然,也可以用 ls -lt | tail -100 | awk '{ print $9 }' | 阅读全文
摘要:
(gdb) p arr $8 = (struct rte_fbarray *) 0x1000000b0 (gdb) p *arr $9 = {name = '\000' <repeats 63 times>, count = 0, len = 0, elt_sz = 0, data = 0x0, r 阅读全文