博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux目录结构(Linux文件系统结构)( 转载 )
阅读量:4053 次
发布时间:2019-05-25

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

Have you wondered why certain programs are located under /bin,or /sbin, or /usr/bin, or /usr/sbin?

For example, less command is located under /usr/bin directory.Why not /bin, or /sbin, or /usr/sbin? What is the different betweenall these directories?

In this article, let us review the Linux filesystem structuresand understand the meaning of individual high-leveldirectories.

1. / – Root

  • Every single file and directory starts from the rootdirectory.
  • Only root user has write privilege under this directory.
  • Please note that /root is root user’s home directory, which isnot same as /.

2. /bin – User Binaries

  • Contains binary executables.
  • Common linux commands you need to use in single-user modes arelocated under this directory.
  • Commands used by all the users of the system are locatedhere.
  • For example: ps, ls, ping, grep, cp.

3. /sbin – System Binaries

  • Just like /bin, /sbin also contains binary executables.
  • But, the linux commands located under this directory are usedtypically by system aministrator, for system maintenancepurpose.
  • For example: iptables, reboot, fdisk, ifconfig, swapon

4. /etc – Configuration Files

  • Contains configuration files required by all programs.
  • This also contains startup and shutdown shell scripts used tostart/stop individual programs.
  • For example: /etc/resolv.conf, /etc/logrotate.conf

5. /dev – Device Files

  • Contains device files.
  • These include terminal devices, usb, or any device attached tothe system.
  • For example: /dev/tty1, /dev/usbmon0

6. /proc – Process Information

  • Contains information about system process.
  • This is a pseudo filesystem contains information about runningprocess. For example: /proc/{pid} directory contains informationabout the process with that particular pid.
  • This is a virtual filesystem with text information about systemresources. For example: /proc/uptime

7. /var – Variable Files

  • var stands for variable files.
  • Content of the files that are expected to grow can be foundunder this directory.
  • This includes — system log files (/var/log); packages anddatabase files (/var/lib); emails (/var/mail); print queues(/var/spool); lock files (/var/lock); temp files needed acrossreboots (/var/tmp);

8. /tmp – Temporary Files

  • Directory that contains temporary files created by system andusers.
  • Files under this directory are deleted when system isrebooted.

9. /usr – User Programs

  • Contains binaries, libraries, documentation, and source-codefor second level programs.
  • /usr/bin contains binary files for user programs. If you can’tfind a user binary under /bin, look under /usr/bin. For example:at, awk, cc, less, scp
  • /usr/sbin contains binary files for system administrators. Ifyou can’t find a system binary under /sbin, look under /usr/sbin.For example: atd, cron, sshd, useradd, userdel
  • /usr/lib contains libraries for /usr/bin and /usr/sbin
  • /usr/local contains users programs that you install fromsource. For example, when you install apache from source, it goesunder /usr/local/apache2

10. /home – Home Directories

  • Home directories for all users to store their personalfiles.
  • For example: /home/john, /home/nikita

11. /boot – Boot Loader Files

  • Contains boot loader related files.
  • Kernel initrd, vmlinux, grub files are located under /boot
  • For example: initrd.img-2.6.32-24-generic,vmlinuz-2.6.32-24-generic

12. /lib – System Libraries

  • Contains library files that supports the binaries located under/bin and /sbin
  • Library filenames are either ld* or lib*.so.*
  • For example: ld-2.11.1.so, libncurses.so.5.7

13. /opt – Optional add-on Applications

  • opt stands for optional.
  • Contains add-on applications from individual vendors.
  • add-on applications should be installed under either /opt/ or/opt/ sub-directory.

14. /mnt – Mount Directory

  • Temporary mount directory where sysadmins can mountfilesystems.

15. /media – Removable Media Devices

  • Temporary mount directory for removable devices.
  • For examples, /media/cdrom for CD-ROM; /media/floppy for floppydrives; /media/cdrecorder for CD writer

16. /srv – Service Data

  • srv stands for service.
  • Contains server specific services related data.
  • For example, /srv/cvs contains CVS related data.

转载地址:http://fmaci.baihongyu.com/

你可能感兴趣的文章
MySQL数据库的高可用方案总结
查看>>
常用排序算法总结(一) 比较算法总结
查看>>
SSH原理与运用
查看>>
SIGN UP BEC2
查看>>
S3C2440中对LED驱动电路的理解
查看>>
《天亮了》韩红
查看>>
Windows CE下USB摄像头驱动开发(以OV511为例,附带全部源代码以及讲解) [转]
查看>>
出现( linker command failed with exit code 1)错误总结
查看>>
iOS开发中一些常见的并行处理
查看>>
iOS获取手机的Mac地址
查看>>
ios7.1发布企业证书测试包的问题
查看>>
如何自定义iOS中的控件
查看>>
iOS 开发百问
查看>>
Mac环境下svn的使用
查看>>
github简单使用教程
查看>>
如何高效利用GitHub
查看>>
环境分支-git版本管理
查看>>
uni-app 全局变量
查看>>
js判断空对象的几种方法
查看>>
java 不用递归写tree
查看>>