01 2020 档案
摘要:1. 在需要设置为开机启动的脚本中加入必须的chkconfig启动脚本规范,如下: #!/bin/bash # chkconfig: 2345 80 12 # description: auto start shell script 2. 使用chkconfig将脚本加入自动启动列表 # mv yo
阅读全文
摘要:(gdb)info register <register name>示例如下:
阅读全文
摘要:引用https://blog.csdn.net/unix21/article/details/9991925 (gdb) set print pretty on示例如下:
阅读全文
摘要:答: gcc -dM -E -< /dev/null
阅读全文
摘要:答: Ctrl - A X 按下Ctrl 键和A键, 然后释放这两个键,再按X键即可退出 注意: 同时按下三个键是无效的哦!!!
阅读全文
摘要:1. printk + /proc/sys/kernel/printk printk(KERN_DEBUG "I have a dream\n"); + 2. cat /proc/ksyms (内核符号表) 3. gdb gdb vmlinux /proc/kcore (适用于检查符号表) 4. k
阅读全文
摘要:1. 查看/sys/kernel/debug/clk下的各个文件,从中可以得到各个时钟源的频率
阅读全文
摘要:1. 检查可用更新 $ sudo yum check-update 2. 更新 $ sudo yum update -y
阅读全文
摘要:1. 将内核加载到sdram中的地址 2. 将压缩的内核解压后的内核地址, 如果内核是非压缩的,那么可以直接从1处指定的位置直接启动内核 3. 内核启动地址或入口地址
阅读全文
摘要:1. -dumpmachine Print the compiler's target machine 2. -print-sysroot Print the target sysroot directory that is used during compilation. (编译期间使用到的目录)
阅读全文
摘要:创建risc-v目录 $ mkdir risc-v $ cd risc-v 获取源码 $ git clone --recursive https://github.com/riscv/riscv-gnu-toolchain.git 安装依赖包$ sudo apt-get install autoco
阅读全文
摘要:newlib glibc license basically it's a berkeley style copyright LGPL destination it is a collection of software from several sources, and was put toget
阅读全文
摘要:1. 获取源码: git clone https://gitee.com/Jello_Smith/linux_tools.git cd linux_tools/does_gcc_support_c++11_feature 2. 执行脚本 $./test.sh
阅读全文
摘要:1. 进入命令行 2. 输入以下命令进行验证: certutil -hashfile <file name>
阅读全文