(198)
(6)
(20)
(8)
(3)
(17)
(3)
(3)
(9)
(13)
(17)
(77)
(22)
发布时间:2023-03-15 20:00:16
chmod 修改文件权限 文字设定法 :u(user)表示属组 ; g(group)表示同组人 ; o(others)表示其他人 ; a(all)所有人 :增加权限 ;- :去掉权限 .........
发布时间:2023-03-06 16:28:58
项目中经常使用别人维护的模块,在git中使用子模块的功能能够大大提高开发效率。使用子模块后,不必负责子模块的维护,只需要在必要的时候同步更新子模块即可。......
发布时间: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#.........