01 2023 档案
摘要:1. 查看支持的板子(即SOC):qemu-system-xxx -M help 例如: 想查询支持的arm芯片的板子:qemu-system-arm -M help 想查询支持的PowerPC(32位)芯片的板子:qemu-system-ppc -M help 想查询支持的PowerPC(64位)
阅读全文
摘要:qemu使用uboot通过网络加载 linux kernel。 参考文章: https://www.cnblogs.com/edver/p/12117349.html https://www.zhaixue.cc/qemu/qemu-u-boot.html https://zhuanlan.zhih
阅读全文
摘要:使用.vimrc配置vim。 1 1 " 语法高亮 2 2 syntax on 3 3 4 4 " 主题色 5 5 colorscheme delek " 想要看vim自带的主题, 在非编辑模式下:colorscheme , 然后使用Tab键查看 6 6 7 7 " 设置编码方式 8 8 set e
阅读全文
摘要:通过进程名获取pid并用pid进行杀死操作。 1 #!/bin/sh 2 3 # 使用pgrep获取名字叫qemu-system-arm的进程的PID(进程ID) 4 qemu_p_name="qemu-system-arm" 5 qemu_pid=`ps -f | pgrep ${qemu_p_n
阅读全文
摘要:qemu搭建和运行起来一个linux内核环境。 参考了博客: https://www.cnblogs.com/edver/p/6001786.html https://blog.csdn.net/ReCclay/article/details/102319392 https://www.cnblog
阅读全文