buildroot linux filesystem 初探
/******************************************************************************
* buildroot linux filesystem 初探
* 声明:
* 在自己做文件系统的时候发现了这个buildroot,可以用来直接做文件系统,于是
* 下载下来自己编译了一下,发现确实是这样的,于是简单尝试一下,先看看效果如何。
*
* 2016-2-1 深圳 南山平山村 曾剑锋
*****************************************************************************/ 一、参考文档:
. 使用buildroot搭建linux文件系统
http://www.wfuyu.com/technology/24705.html
. The Buildroot user manual
https://buildroot.org/downloads/manual/manual.html 二、buildroot下载:
https://buildroot.org/ 三、文件系统:
Qt@zengjf:~/rootfs/buildroot/buildroot-2015.11./output/target$ ls -al
total
drwxr-xr-x Qt Qt Jan : .
drwxr-xr-x Qt Qt Jan : ..
drwxr-xr-x Qt Qt Jan : bin
drwxr-xr-x Qt Qt Jan : dev
drwxr-xr-x Qt Qt Jan : etc
drwxr-xr-x Qt Qt Jan : lib
lrwxrwxrwx Qt Qt Jan : lib32 -> lib
lrwxrwxrwx Qt Qt Jan : linuxrc -> bin/busybox
drwxr-xr-x Qt Qt Dec : media
drwxr-xr-x Qt Qt Dec : mnt
drwxr-xr-x Qt Qt Dec : opt
drwxr-xr-x Qt Qt Dec : proc
drwx------ Qt Qt Dec : root
drwxr-xr-x Qt Qt Dec : run
drwxr-xr-x Qt Qt Jan : sbin
drwxr-xr-x Qt Qt Dec : sys
-rw-r--r-- Qt Qt Jan : THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
drwxrwxrwt Qt Qt Jan : tmp
drwxr-xr-x Qt Qt Jan : usr
drwxr-xr-x Qt Qt Jan : var
Qt@zengjf:~/rootfs/buildroot/buildroot-2015.11./output/target$ 四、etc目录:
Qt@zengjf:~/rootfs/buildroot/buildroot-2015.11./output/target/etc$ ls -al
total
drwxr-xr-x Qt Qt Jan : .
drwxr-xr-x Qt Qt Jan : ..
-rw-r--r-- Qt Qt Dec : fstab
-rw-r--r-- Qt Qt Dec : group
-rw-r--r-- Qt Qt Jan : hostname
-rw-r--r-- Qt Qt Jan : hosts
drwxr-xr-x Qt Qt Feb : init.d
-rw-r--r-- Qt Qt Jan : inittab
-rw-r--r-- Qt Qt Dec : inputrc
-rw-r--r-- Qt Qt Jan : issue
-rw-r--r-- Qt Qt Jan : ld.so.cache
-rw-r--r-- Qt Qt Jan : ld.so.conf
drwxr-xr-x Qt Qt Dec : ld.so.conf.d
-rw-r--r-- Qt Qt Jan : mdev.conf
lrwxrwxrwx Qt Qt Dec : mtab -> /proc/mounts
drwxr-xr-x Qt Qt Jan : network
-rw-r--r-- Qt Qt Jan : nsswitch.conf
-rw-r--r-- Qt Qt Jan : os-release
-rw-r--r-- Qt Qt Dec : passwd
-rw-r--r-- Qt Qt Dec : profile
drwxr-xr-x Qt Qt Dec : profile.d
-rw-r--r-- Qt Qt Dec : protocols
lrwxrwxrwx Qt Qt Dec : resolv.conf -> ../tmp/resolv.conf
-rw-r--r-- Qt Qt Dec : services
-rw------- Qt Qt Jan : shadow
Qt@zengjf:~/rootfs/buildroot/buildroot-2015.11./output/target/etc$
buildroot linux filesystem 初探的更多相关文章
- 转载--linux filesystem structures
In this article, let us review the Linux filesystem structures and understand the meaning of individ ...
- RH033读书笔记(15)-Lab 16 The Linux Filesystem
Lab 16 The Linux Filesystem Goal: Develop a better understanding of Linux filesystem essentials incl ...
- 阿里云Linux服务器初探
阿里云Linux服务器初探 阿里云Linux服务器初探 因为钱包的关系,本人买了一个660元2年的1核1GB的小服务器(centos是Linux的发行版),在当初是用2核4GB(内存)的时候使用的是w ...
- Linux系统初探过程总结
Linux系统初探的过程大约用了一周的时间,这周基本将Linux系统安装,PostgreSQL安装,Nginx服务器安装,ASP.NET Core应用部署都走了一遍.由于以前没有怎么接触和使用过Lin ...
- Linux & Filesystem Hierarchy Standard
Linux & Filesystem Hierarchy Standard The Filesystem Hierarchy Standard of Linux https://zhuanla ...
- Linux内核初探 之 进程(三) —— 进程调度算法
一.基本概念 抢占 Linux提供抢占式多任务,基于时间片和优先级对进程进行强制挂起 非抢占的系统需要进程自己让步(yielding) 进程类型 IO消耗型 经常处于可运行态,等待IO操作过程会阻塞 ...
- Linux filesystem structures.
1. / – Root Every single file and directory starts from the root directory. Only root user has write ...
- Linux filesystem
文件系统的运作与操作系统的文件数据有关.较新的操作系统的文件数据除了文件实际内容外,通常含有非常多的属性,例如Linux操作系统的文件权限(rwx)与文件属性(属主.属组.时间参数等).文件系统通常会 ...
- linux驱动初探之杂项设备(控制两个GPIO口)
关键字:linux驱动.杂项设备.GPIO 此驱动程序控制了外接的两个二极管,二极管是低电平有效. 上一篇博客中已经介绍了linux驱动程序的编写流程,这篇博客算是前一篇的提高篇,也是下一篇博客(JN ...
随机推荐
- oracle——merge
一.概述 使用merge声明从一个或者更多个表或视图中筛选记录,以用来更新或者插入到一个表或视图中.你可以指定条件以决定是执行update操作还是insert操作到目标表或视图中. 这个声明是一个 ...
- 母函数入门笔记(施工中…
定义:对于一个数列,它的母函数(即生成函数)为 为了对这个准确求值,我们设 举一个简单的例子 例1 对于数列 他的生成函数为 ,那么应用一下等比数列求和公式 这里由于 所以当时 那么 例 ...
- uLua 学习笔记 之一 lua脚本 打包与读取
最近要学习热更新,搜了下,选择了ulua这个插件,本人也是新人.对这个插件也是一知半解,不过幸好加了专门讨论这一块的群,这个群的技术氛围还是很浓重的,特别是已经形成了一套自己的lua学习框架.最近周末 ...
- VS2010 MFC DataGrid绑定实例
VS2010环境下MFC使用DataGrid绑定数据源 参考:http://blog.csdn.net/fddqfddq/article/details/7874706 详细介绍如何在MFC中使用Da ...
- JsRender系列demo-10
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery.j ...
- java基础知识回顾之java Thread类学习(七)--java多线程通信等待唤醒机制(wait和notify,notifyAll)
1.wait和notify,notifyAll: wait和notify,notifyAll是Object类方法,因为等待和唤醒必须是同一个锁,不可以对不同锁中的线程进行唤醒,而锁可以是任意对象,所以 ...
- **CI两种方式查询所返回的结果数量
区别:第一个是有条件的:第二个没有条件 $this->db->count_all_results(); 允许你获得某个特定的Active Record查询所返回的结果数量.可以使用Acti ...
- java 追加写入代码一例
最近最项目参数化的时候用到,场景是这样的,需要测试A和B两个接口,其中B接口传入的参数必须是传递给A接口过的,所以整理一个思路就是: 1. 正常调用A接口,但是将传递给A接口的参数保存到文本里,此处要 ...
- linux 踢出用户方法
linux系统root用户可强制踢制其它登录用户, 首先以root登录以便查看全部的在线用户信息,可用w命令查看登录用户信息 强制踢人命令格式:pkill -kill -t tty 解释: pkill ...
- NuGet学习笔记——初识NuGet及快速安装使用
源自:http://kb.cnblogs.com/page/143190/