zoukankan      html  css  js  c++  java
  • 转载:linux各文件系统的用途

    /bin Essential user command binaries (for use by all users)
    /boot Static files of the boot loader, only used at system startup
    /dev Device files, links to your hardware devices like /dev/sound, /dev/input/js0 (joystick)
    /etc Host-specific system configuration
    /home User home directories. This is where you save your personal files
    /lib Essential shared libraries and kernel modules
    /mnt Mount point for a temporarily mounted filesystem like /mnt/cdrom
    /opt Add-on application software packages
    /usr /usr is the second major section of the filesystem. /usr is shareable, read-only data. That means that /usr should be shareable between various FHS-compliant hosts and must not be written to. Any information that is host-specific or varies with time is stored elsewhere.
    /var /var contains variable data files. This includes spool directories and files, administrative and logging data, and transient and temporary files.
    /proc System information stored in memory mirrored as files.
  • 相关阅读:
    面试笔试
    scala(9) Monad
    scala (8) 模糊匹配
    scala (7) Set and Tuple
    scala (6) Map
    scala (5) 可变序列和不可变序列
    scala (4) 可变数组和不可变数组
    scala (3) Function 和 Method
    scala (2) while 和变量
    scala (1) for 循环
  • 原文地址:https://www.cnblogs.com/moonson/p/1309938.html
Copyright © 2011-2022 走看看