上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 77 下一页
摘要: 1. 往文件/etc/default/docker中加入以下内容: DOCKER_OPTS="--insecure-registry $DOCKER_OPTS --insecure-registry registry.mirrors.aliyuncs.com" 2. 重启docker服务 $ sud 阅读全文
posted @ 2020-04-28 22:13 Jello 阅读(932) 评论(0) 推荐(0) 编辑
摘要: 参考此处 注意: 软件源更换后请在MSYS2的命令行中使用panman工具来安装软件包 (在MinGW Installation Manager中仍然是原来的软件源,此法对MinGW Installation Manager无效) 阅读全文
posted @ 2020-04-28 00:12 Jello 阅读(833) 评论(0) 推荐(0) 编辑
摘要: 1. 在Dockerfile中换软件源 1.1 如果使用ubuntu 20.04为基础docker镜像,那么Dockerfile如下: FROM ubuntu:20.04 RUN sed -i 's/ports.ubuntu.com/mirror.tuna.tsinghua.edu.cn/g' /e 阅读全文
posted @ 2020-04-27 00:20 Jello 阅读(3522) 评论(0) 推荐(0) 编辑
摘要: 1. 往/etc/apt/apt.conf.d/proxy.conf文件中添加以下内容即可, Acquire::http::Proxy "http://user:password@proxy.server:port/"; Acquire::https::Proxy "http://user:pass 阅读全文
posted @ 2020-04-24 16:35 Jello 阅读(1289) 评论(0) 推荐(0) 编辑
摘要: 保证两点 1. 使用的相同内核源码 2. 使用的相同内核配置(指生成的配置文件) 阅读全文
posted @ 2020-04-23 19:17 Jello 阅读(1491) 评论(0) 推荐(0) 编辑
摘要: 答: 操作步骤如下: 1. 使ssh服务开机启动 $ sudo systemctl enable ssh 2. 启动ssh服务 $ sudo systemctl start ssh 阅读全文
posted @ 2020-04-19 23:55 Jello 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 答:打开/etc/apt/source.list文件将所有的http://raspbian.raspberrypi.org/raspbian/替换为http://mirror.tuna.tsinghua.edu.cn/raspbian/raspbian/ 阅读全文
posted @ 2020-04-18 23:13 Jello 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 答: 在ubuntu根文件系统中添加对应内核模块名称到/etc/modprobe.d/your.conf即可 1. 复制内核模块到/lib/modules/`uname -r`/下# cp your-kernel-module-name.ko /lib/modules/`uname -r`/ 2. 阅读全文
posted @ 2020-04-16 13:20 Jello 阅读(4706) 评论(0) 推荐(0) 编辑
摘要: 1. 在uboot下设置bootargs => setenv bootargs "root=/dev/nfs ip=192.168.1.111 nfsroot=192.168.1.1:/nfs rw"; 阅读全文
posted @ 2020-04-16 11:08 Jello 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 1. 示例如下: char my_array[10]; *(int *)my_array = 0xaabbccdd; 2. 修改如下即可解决此问题: char my_array[10]; int tmp = 0xaabbccdd; memcpy(my_array, &tmp, sizeof(tmp) 阅读全文
posted @ 2020-04-15 21:48 Jello 阅读(1586) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 77 下一页