上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 77 下一页
摘要: 答:使用以下语法即可删除某节点: /delete-node/ 节点名; 阅读全文
posted @ 2019-05-28 15:29 Jello 阅读(1759) 评论(0) 推荐(0)
摘要: 答: 使用fdt命令 1. fdt addr <fdt addr> (将设备树加载到fdt addr指定的位置,如tftpboot 0x80000000 my.dtb,那么fdt addr 0x80000000) 2. fdt print (打印出设备树的所有内容) 阅读全文
posted @ 2019-05-28 15:20 Jello 阅读(2279) 评论(0) 推荐(0)
摘要: 答:步骤如下: 1. sudo apt update (更新软件源) 2. sudo apt upgrade (更新内核相关的包) 3. sudo apt dist-upgrade 4. sudo apt-get autoremove 5. sudo apt install update-manag 阅读全文
posted @ 2019-05-27 19:35 Jello 阅读(6474) 评论(0) 推荐(0)
摘要: 答:步骤如下: 1. 找出包名 dpkg -l |grep <package name> 2. 卸载 dpkg -r <package name> 阅读全文
posted @ 2019-05-27 19:04 Jello 阅读(2856) 评论(0) 推荐(0)
摘要: 答: 使用docker inspect <CONTAINER ID>即可 阅读全文
posted @ 2019-05-27 17:41 Jello 阅读(4995) 评论(0) 推荐(0)
摘要: 1. 假设要chroot的根目录为/mnt 2. 创建必要的目录 mkdir /mnt/{dev,proc,sys,run} 3. 挂载和构建/dev mount -v --bind /dev /mnt/dev 4. 挂载虚拟内核文件系统 5. chroot到/mnt下 chroot /mnt 阅读全文
posted @ 2019-05-27 12:13 Jello 阅读(2450) 评论(0) 推荐(0)
摘要: 答: 使用uci进行配置,示例如下: uci get network.wan.ifname (笔者得到eth1) uci set network.wan.ifname=ethx (如: uci set network.wan.ifname=eth1) uci set network.wan6.ifn 阅读全文
posted @ 2019-05-27 10:38 Jello 阅读(5605) 评论(0) 推荐(0)
摘要: 答: id 或 groups 阅读全文
posted @ 2019-05-26 19:59 Jello 阅读(2293) 评论(0) 推荐(0)
摘要: 答: sudo apt-get install p7zip 1. 解压 7zr x filename.7z 2. 压缩 7zr a -t7z -r filename.7z ~/filename/* 各参数解析: a 代表添加文件/文件夹到压缩包 -t 是指定压缩类型 一般我们定为7z -r 表示递归 阅读全文
posted @ 2019-05-23 12:53 Jello 阅读(6796) 评论(0) 推荐(0)
摘要: 答: 请点击此处下载 阅读全文
posted @ 2019-05-22 18:52 Jello 阅读(805) 评论(0) 推荐(0)
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 77 下一页