• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






lone_legend

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2021年7月25日

yocto/bitbake 学习资源
摘要: 博客/文章 A practical guide to BitBake 阅读全文
posted @ 2021-07-25 17:11 Legend_Lone 阅读(98) 评论(0) 推荐(0)
 
QEMU/KVM学习资源
摘要: 书籍 深度探索Linux系统虚拟化 论文 QEMU, a Fast and Portable Dynamic Translator 阅读全文
posted @ 2021-07-25 17:07 Legend_Lone 阅读(161) 评论(0) 推荐(0)
 
ubuntu 中创建和删除用户
摘要: 创建用户 $ sudo adduser <username> # 加下来输入密码和其他个人信息即可,会自动创建家目录 $ sudo usermod -aG sudo <username> # 使新创建的用户具有执行 sudo 命令的权限 删除用户 $ sudo deluser <username> 阅读全文
posted @ 2021-07-25 16:51 Legend_Lone 阅读(250) 评论(0) 推荐(0)
 
git 重命名本地和远程分支
摘要: git 重命名本地分支的方法 # 如果当前就在要重命名的分支上,可以不加`old_branch`参数 $ git branch -m [old_branch] <new_branch> git 重命名远程分支的方法 $ git push -d <remote_name> <old_remote_br 阅读全文
posted @ 2021-07-25 16:46 Legend_Lone 阅读(127) 评论(0) 推荐(0)