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 ...
随机推荐
- Codeforces Round #360 (Div. 2) D. Remainders Game 中国剩余定理
题目链接: 题目 D. Remainders Game time limit per test 1 second memory limit per test 256 megabytes 问题描述 To ...
- struts2 ,web.xml中配置为/*.action,运行报错Invalid <url-pattern> /*.action in filter mapp
首先,修改成: <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/ ...
- css3技巧——产品列表之鼠标滑过效果(一)
查看效果: http://www.daqianduan.com/example?pid=6117 html代码: <div class="main"> <div ...
- Spring+Mybatis+Maven 整合配置
<?xml version="1.0" encoding="UTF-8"?> <beans default-autowire="by ...
- NYOJ-36 最长公共子序列 AC 分类: NYOJ 2014-01-03 20:54 155人阅读 评论(0) 收藏
#include<stdio.h> #include<string.h> #define N 1010 #define max(x,y) x>y?x:y int dp() ...
- 别让安全问题拖慢了 DevOps!
DEVSECOPS 所面临的挑战 敏捷开发和 DevOps 方法的出现使软件开发的速度与质量都有所提升,但它们不经意地也为安全机构增压不少.从前的安全策略是基于静态数据的,而在产品上线前才应用这些策略 ...
- POJ1416Shredding Company
http://poj.org/problem?id=1416 题意 : 要为碎纸机公司开发一种新的碎纸机,这种碎纸机要具有3个特性 :一是粉碎机以一个目标数 t 作为输入,并且粉碎的纸上写有一个数字n ...
- 架构探险——从零开始写Java Web框架》第二章照作
沉下来慢慢看实现了. 越来越觉得可以和DJANGO作对比. package org.smart4j.chapter2.model; /** * Created by sahara on 2016/3/ ...
- Spring 注入static变量
一般我们我想注入一个static的变量,如下: @Autowired private static String str; 不过,这样最终结果为null. 1.使用配置文件的方式注入 priva ...
- 【mongoDB运维篇②】备份与恢复(导入与导出)
导入/导出可以操作的是本地的mongodb服务器,也可以是远程的服务器 所以,都有如下通用选项: -h host 主机 --port port 端口 -u username 用户名 -p passwd ...