上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 77 下一页
摘要: 答: 使用dd命令烧写即可 # dd if=<ubuntu image name>.iso of=/dev/sdX bs=32M 阅读全文
posted @ 2020-05-29 12:45 Jello 阅读(667) 评论(0) 推荐(0) 编辑
摘要: 答: 给yocto打补丁,补丁内容如下: +diff --git a/locale/bits/types/locale_t.h b/locale/bits/types/locale_t.h +new file mode 100644 +index 0000000000..b519a6c5f8 + / 阅读全文
posted @ 2020-05-29 12:23 Jello 阅读(1210) 评论(0) 推荐(0) 编辑
摘要: 答: 修改automake的规则 a/bin/automake +++ b/bin/automake @@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker sub substitute_ac_subst_variables { 阅读全文
posted @ 2020-05-28 21:31 Jello 阅读(792) 评论(0) 推荐(0) 编辑
摘要: 答: 替换--set-upstream为--set-upstream-to, 示例如下: a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -326,7 +326,7 @@ class Git(FetchMeth 阅读全文
posted @ 2020-05-28 20:37 Jello 阅读(2946) 评论(0) 推荐(0) 编辑
摘要: 命令如下 $ apt-file search <头文件名> (apt-file search /usr/include/linux/limits.h) 阅读全文
posted @ 2020-05-28 17:07 Jello 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 总结一句话:系统调用的本质,通过sc指令触发异常,完成用户态到内核的转换。 展开一些:应用程序调用fork(),fork()是一个glibc函数,该函数的最底层调用sc指令,触发cpu异常,从而完成从用户态到内核态的切换, 内核:在异常处理中完成fork()的内核态处理,然后通过rfi指令返回到用户 阅读全文
posted @ 2020-05-26 23:33 Jello 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 1. 应用程序通过系统调用从用户空间进入内核空间 系统架构 进入内核态时使用的汇编指令 ARM32 swi ARM64(ARMv8, AARCH64) svc X86 int RISC-V ecall mips syscall powerpc sc 阅读全文
posted @ 2020-05-26 22:45 Jello 阅读(691) 评论(0) 推荐(0) 编辑
摘要: 1. 将当前用户加入docker组 $ sudo usermod -a -G docker <当前用户名> 2. 修改/var/run/docker.sock的权限 $ sudo chmod 666 /var/run/docker.sock 阅读全文
posted @ 2020-05-18 10:37 Jello 阅读(6799) 评论(0) 推荐(1) 编辑
摘要: 一.有两种方案 1.1. vnc 1.2. xrdp (针对windows端登陆远程linux服务器) 二. 方案一 2.1. 安装vnc $ sudo apt-get install vnc4server 2.2. 安装轻量级桌面xfce $ sudo apt-get install xfce 2 阅读全文
posted @ 2020-05-17 14:00 Jello 阅读(1273) 评论(0) 推荐(0) 编辑
摘要: 答: 安装python-setuptools/python3-setuptools$ sudo apt-get install python-setuptools python3-setuptools 阅读全文
posted @ 2020-05-08 20:23 Jello 阅读(10251) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 77 下一页