
调试
文章平均质量分 81
leoufung
Linux Kernel,Virtualization
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
setup_vm.sh
!/bin/sh/home/liufeng/tools/bin/qemu-system-x86_64 -machine accel=kvm -hda ./test.img -m 2048 -cdrom ./RHEL6.3-20120613.2-Server-x86_64-DVD1.iso -boot d -vnc 10.238.153.194:0 -monitor telnet:10.238.153.194:6666,server,nowaitmodprobe tuntunctl -t tap1原创 2020-09-24 20:58:44 · 237 阅读 · 0 评论 -
OVS-DPDK-VHOSTUSER CLINET-VM 环境搭建
################################################################################# OVS DPDK VM 安装################################################################################vim ~/.bash_profile>>>>>>>>>>>>>>.原创 2020-09-24 20:57:08 · 672 阅读 · 0 评论 -
OVS-DPDK环境搭建
################################################################################# OVS DPDK 安装################################################################################vim .bash_profile>>>>>>>>>>>>>>>.原创 2020-09-24 20:56:04 · 1129 阅读 · 1 评论 -
Linux系统动态查看每个CPU上任务的调度情况
Linux系统动态查看每个CPU上任务的调度情况,可以通过接口 “cat /proc/sched_debug” 来进行我们来看看例子,首先查看核1上的所有任务,用“ps -T -eo %cpu,stat,pid,tid,args:50,psr | awk -F" " '{if($(NF) == 1) print $0}'”其中44683优先级是99,44736优先级是 other 0那我们看一下调试的输出我们可以看到 switches和sum-exec用的最多的就是bs_bbu(4.原创 2020-08-21 16:25:22 · 4234 阅读 · 0 评论 -
GDB调试 打印二维数组
int matrix1[3][3] = {{1,2,3},{4,5,6},{7,8,9}};gdb打印的命令为 p **matrix@3@3原创 2020-02-28 21:46:28 · 2248 阅读 · 0 评论