全部博文(198)
发布时间:2023-03-15 20:00:16
chmod 修改文件权限 文字设定法 :u(user)表示属组 ; g(group)表示同组人 ; o(others)表示其他人 ; a(all)所有人 + :增加权限 ;- :去掉权限  .........【阅读全文】
发布时间:2023-02-08 11:57:59
参考:点击(此处)折叠或打开https://github.com/Neutree/c_cpp_project_framework......【阅读全文】
发布时间:2023-02-08 11:45:38
参考:https://github.com/bobwenstudy/test_kconfig_system......【阅读全文】
发布时间:2023-02-02 18:06:30
准备工作最小Ubuntu根文件系统ubuntu-base-20.04.1-base-arm64.tar.gz编写一个挂载脚本mount.sh,方便进入和退出arm64的文件系统#!/bin/bashfunction mnt() {echo "MOUNTING"sudo mount -t proc /proc ${2}procsudo mount -t sysfs /sys ${2}syssudo mount -o bind /dev ${2}dev#.........【阅读全文】