1 2 3 4 5 ··· 12 下一页
摘要: 1、Please make sure locale 'en_US.UTF-8' is available on your system 检查区域设置 locale -a 如果不在生成区域设置 sudo locale-gen en_US.UTF-8 更新区域设置 sudo update-locale 阅读全文
posted @ 2024-08-25 18:53 NotReferenced 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、下载rufus工具 https://rufus.ie/zh/ 2、在设备中选中u盘和镜像 3、点击开始 4、等待制作完毕即可 阅读全文
posted @ 2024-08-25 16:17 NotReferenced 阅读(2) 评论(0) 推荐(0) 编辑
摘要: x86 32位系统,x64 64位系统 阅读全文
posted @ 2024-08-25 16:10 NotReferenced 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 挂载文件系统 1、语法 mount [-h|-V] mount [-l] [-t fstype] mount -a [-fFnrsvw] [-t fstype] [-O optlist] mount [-fnrsvw] [-o options] device|mountpoint mount [-f 阅读全文
posted @ 2024-08-23 07:38 NotReferenced 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1、修改指定文件 vi workspace/sources/phosphor-state-manager/bmc_state_manager_main.cpp 2、编译修改的仓库 bitbake phosphor-state-manager 编译后的二进制文件:./workspace/sources 阅读全文
posted @ 2024-08-21 07:37 NotReferenced 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、简介 journalctl用于查询和操作systemd进程管理的日志。 Systemd是Linux发行版的初始化系统,负责启动系统后的所有服务,并监视它们在系统运行期间的状态。Journal是Systemd的一部分,主要负责收集和存储日志数据。 journalctl是Journal的主要接口,提 阅读全文
posted @ 2024-08-21 07:10 NotReferenced 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、提取源代码 提取想要修改仓库源代码 devtool modify phosphor-state-manager 2、修改源代码 vi workspace/sources/phosphor-state-manager/bmc_state_manager_main.cpp +#include <io 阅读全文
posted @ 2024-08-21 06:46 NotReferenced 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、前置条件 sudo apt install git python3-distutils gcc g++ make file wget \ gawk diffstat bzip2 cpio chrpath zstd lz4 bzip2 2、构建OpenBMC git clone https://g 阅读全文
posted @ 2024-08-19 22:26 NotReferenced 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 注释sanity.bbclass文件中的以下代码: #if 0 == os.getuid(): # raise_sanity_error("Do not use Bitbake as root.", d) 阅读全文
posted @ 2024-08-18 20:41 NotReferenced 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 在Linux下使用vim查找关键字命令非常简单。以下是一些常用的vim查找关键字命令: 前向查找:按下“/”键,输入要查找的关键字,然后按下回车键。vim会自动定位到下一个匹配的关键字位置。 向后查找:按下“?”键,输入要查找的关键字,然后按下回车键。vim会自动定位到上一个匹配的关键字位置。 查找 阅读全文
posted @ 2024-08-18 20:35 NotReferenced 阅读(3) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 12 下一页