
busybox
yi412
这个作者很懒,什么都没留下…
展开
-
linux笔记:构建根文件系统
linux笔记:构建根文件系统 构建根文件系统 最小根文件系统所需元素: (1) /dev/condsole /dev/null (2) init---->busybox (3) /etc/inittab (4) 配置文件里指定的应用程序 (5) C库(如果busybox中程序是动态使用链接库的话) 先来配转载 2015-06-08 17:11:57 · 551 阅读 · 0 评论 -
linux:用户和组文件解释(/etc/passwd、/etc/shadow、/etc/group、/etc/gshadow)
linux:用户和组文件解释(/etc/passwd、/etc/shadow、/etc/group、/etc/gshadow) 一、用户文件:/etc/passwd [root@pinfun6 ~]# cat /etc/passwd root:x:0:0:root:/root:/bin/bash 1 2 3 4 5 6 7 | | | | | |转载 2015-06-08 20:17:18 · 1067 阅读 · 0 评论 -
Linux root直接登录
Linux root直接登录 嵌入式系统,有时希望直接用root登录系统,不需要首动输入密码,可以这样配置: /etc/passwd 档格式如下所示: username:passwd:UID:GID:full_name:directory:shell 将root的那一行的x去掉就可以(这里面的x只是一个占位副,密码编码在/etc/shadow): root:x:0:0:roo转载 2015-06-08 21:05:38 · 4372 阅读 · 0 评论 -
/etc/group 文件内容及其解释
/etc/group 存储有关本地用户组的信息 它的格式为: 1)groupname GID到名称的一种映射,组名 2)password 保存密码的位置 3)GID 组ID 4)user 组成员 添加组 — groupadd 参数 -g gid 组的ID 值 .转载 2015-06-08 20:49:42 · 5344 阅读 · 0 评论 -
使用BusyBox制作嵌入式Linux根文件系统
使用BusyBox制作嵌入式Linux根文件系统 STEP 1:构建目录结构 创建根文件系统目录,主要包括以下目录 /dev /etc /lib /usr /var /proc /tmp /home /root /mnt /bin /sbin /sys #mkdir /home/rootfs #cd /home/rootfs #mkdir de转载 2015-06-08 21:10:37 · 1011 阅读 · 0 评论