博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux学习笔记:系统目录结构
阅读量:7023 次
发布时间:2019-06-28

本文共 1375 字,大约阅读时间需要 4 分钟。

Linux系统文件夹代表的含义:

  •  - Binaries.
  •  - Files required for booting.
  •  - Device files.
  •  - Etcctera. The name is inherited from the earliest Unixes, which is when it became the spot to put config-files.
  •  - Where Home directories are kept.
  •  - Where code libraries are kept.
  •  - A more modern directory, but where removable media gets mounted.
  •  - Where temporary file-systems are mounted.
  •  - Where opttional add-on software is installed. This is discrete from /usr/local/ for reasons I'll get to later.
  •  - Where runtime variable data is kept.
  •  - Where super-binaries are stores. These usually only work with root.
  •  - Another directory inherited from the Unixes of old, it stands for "user". This directory should be sharable between hosts, and can be NFS mounted to multiple hosts safely. It can be mounted read-only safely. Also as per , /usr is UNIX System Resources.
  •  - Another directory inherited from the Unixes of old, it stands for "variable". This is where system data that varies may be stored. Such things as spool and cache directories may be located here. If a program needs to write to the local file-system and isn't serving that data to someone directly, it'll go here.
  •  - Stands for "serve". This directory is intended for static files that are served out. /srv/http would be for static websites, /srv/ftp for an FTP server.

 非原创,内容来源

转载于:https://www.cnblogs.com/colin220/p/10152742.html

你可能感兴趣的文章
第一次实训作业
查看>>
Hash
查看>>
nginx 配置手机端PC端访问不同的项目
查看>>
SpriteKit-(SKNode)
查看>>
并发编程可能存在的问题
查看>>
c++ 不太懂得地方
查看>>
前端面试问题整理 第一部分
查看>>
挖一口自己的井
查看>>
[Dart] Flutter 上传文件
查看>>
XML概述
查看>>
leetcode-598-Range Addition II
查看>>
springboot + shiro 验证码与记住登录
查看>>
小猿圈分享HTML5中form如何关闭自动完成功能的方法
查看>>
Carthage 安装与使用
查看>>
详解 Cookie,Session,Token
查看>>
jq 登录正则验证
查看>>
TCP之三次握手和四次挥手
查看>>
【算法学习笔记】70.回文序列 动态规划 SJTU OJ 1066 小M家的牛们
查看>>
phpcms v9 评论的bug.
查看>>
使用Jmeter进行APP接口测试经验总结
查看>>