利用WSL Linux编译OpenBMC

  • WSL2安装

(1)旧版 WSL 的手动安装步骤 | Microsoft Learn

(2)https://www.cnblogs.com/37yan/p/16169564.html

(3)在win10中安装linux--使用WSL_wsl.conf-CSDN博客

  • 安装Ubuntu 18.04 on Windows

安装方法有2种,

  1. 一种是通过Microsoft Store安装,参见,如果没有安装Store或者不想通过Store,推荐第2种方式。Ubuntu 18.04 on Windows - Microsoft Store 中的官方应用
  2. 另一种可以直接下载Ubuntu_1804.2019.522.0_x64.appx,用7z解压缩后直接在Powershell下面执行ubuntu1804.exe,第一次执行会提示设定Ubuntu系统的用户名和密码。
  3. 新建并配置/etc/wsl.conf,解决访问权限的问题
bash 复制代码
# 新建/etc/wsl.conf文件,输入以下内容
[automount]
root = /
options = "metadata"
  • WSL GitHub SSH Key

进入到新安装的Ubuntu后,需要把连接GitHub所需要的SSH KEY拷贝到"/home/username/.ssh"下面,验证是否成功,通过指令

bash 复制代码
ssh -T git@github.com
  • Github连接碰到的问题及解决

(1)The TMPDIR Error

修改文件在:"openbmc\poky\meta\conf\sanity.conf"

The TMPDIR: ../build/tmp can't be located on nfs.解决_can't be located on nfs-CSDN博客

(2)UNPROTECTED PRIVATE KEY FILE

ssh WARNING: UNPROTECTED PRIVATE KEY FILE!-CSDN博客

(3)通过Hosts缓解Github访问慢的问题

通过工具(如:"github.com"A记录/cname检测结果--Dns查询|dns查询--站长工具)找到可以连接github的DNS,然后添加到"C:\Windows\System32\drivers\etc\hosts"文件,例如:

bash 复制代码
# localhost name resolution is handled within DNS itself.
#	127.0.0.1       localhost
#	::1             localhost
 	
20.205.243.166 github.com

还有其他专门的工具,如FastGithub等。

  • OpenBMC

屏蔽掉目前不可用的Driver的方法:

  1. openbmc\meta-mytest\meta-common\recipes-mytest\packagegroups\packagegroup-mytest-apps.bb 删除指定的Driver

  2. openbmc\meta-mytest\meta-common\recipes-mytest\Driver,相应的Driver Folder拿掉.

相关推荐
o(╥﹏╥)17 分钟前
linux(ubuntu )卡死怎么强制重启
linux·数据库·ubuntu·系统安全
娶不到胡一菲的汪大东21 分钟前
Ubuntu概述
linux·运维·ubuntu
Yuan_o_34 分钟前
Linux 基本使用和程序部署
java·linux·运维·服务器·数据库·后端
那就举个栗子!1 小时前
Ubuntu 20.04下Kinect2驱动环境配置与测试【稳定无坑版】
linux·ubuntu
灯火不休➴1 小时前
[Xshell] Xshell的下载安装使用、连接linux、 上传文件到linux系统-详解(附下载链接)
linux·运维·服务器
Lukea111 小时前
【新教程】Ubuntu server 24.04配置无线网WiFi
linux·ubuntu·教程
小峰编程1 小时前
独一无二,万字详谈——Linux之文件管理
linux·运维·服务器·云原生·云计算·ai原生
卜及中1 小时前
【Linux】资源隔离机制 — 命名空间(Namespace)详解
linux·服务器·php
扛枪的书生1 小时前
Socat 命令总结
linux
涵信1 小时前
Windows11 安装 Ubuntu-20.04,同时安装配置 zsh shell,配置 git 别名(alias),大大提高开发效率
linux·git·ubuntu·bash