摘要:
解决 使用Git LFS 在官网 https://git-lfs.github.com/ 下载git-lfs-windows-v2.8.0.exe并安装。 新开一个bash命令行输入git lfs install安装 跟踪你要push的大文件git lfs track "*.h5",这时会生成一个. 阅读全文
摘要:
interrupt cpu个数: 254 ``` lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian Address sizes: 43 bits physical, 48 bits 阅读全文
摘要:
[root@centos7 infiniband]# ibv_devices device node GUID rxe0 b20875fffe5fb85e rxe1 46a191fffea49c0c [root@centos7 infiniband]# ibv_devinfo -d rxe0 -v 阅读全文
摘要:
超时处理dev_watchdog 当watchdog发现网卡处于up状态并且发送队列处于停止时间大于5秒时将触发看门狗机制, dev_watchdog先找到停止的队列,然后调用igb_tx_timeout整个网卡队列做超时处理,igb_tx_timeout中对网卡做了DOWN、UP的操作。 stat 阅读全文
摘要:
is deprecated (declared at ./include/rte_memory.h:154): Symbol is not yet part of stable ABI [-Wdeprecated-declarations] ms = rte_mem_virt2memseg(addr 阅读全文
摘要:
Program terminated with signal 11, Segmentation fault. #0 0x0000ffff8bc88e74 in _wordcopy_fwd_aligned () from /lib64/libc.so.6 Missing separate debugi 阅读全文
摘要:
[ sed使用shell中的变量 ] 在脚本中,有时希望在sed命令中使用shell定义的变量。在此时,就要用双引号而不是单引号来引用sed命令,因为对shell来说,它会处理双引号中的变量引用,而对单引号中的内容,shell完全不会动。例如: TERM1=term; TERM2=rxvt; ech 阅读全文
摘要:
libc 内存管理原理探究 Linux 内存管理有三个层面,第一层是我们的用户管理层,比如我们自己程序的内存池,mysql 的 bufferpool,第二层是 C 的运行时库,这部分代码是对内核的一个包装,方便上层应用更方便的开发,再下一层就是我们的内核层了。 我们今天要重点介绍的就是中间那一层,这 阅读全文
摘要:
文件编辑中常用快捷键:ctrl+X 离开nano软件,若有修改过的文件会提示是否保存;选择 :yes又提示:file name to write :***.launch ,选择:Ctrl+T 在下一个界面用 “上下左右” 按键 选择要保存的文件名, 然后直接点击 “Enter” 按键即可保存. ct 阅读全文