Linux directory structure
- /: root directory, all directories, files, devices are in/below,/is the Linux file system organizer, that is, the most superior leader
- /bin: In the general system, can be found in this directory. Common commands for Linux. The commands required by the system are located in this directory.
- /sbin: This directory is used to store system administrator's system management program. Mostly involves the storage of system management, is a super-privileged user. Root can be stored in an executable command, and ordinary users are not authorized to execute commands under this directory.
- The/boot:linux kernel and the file directory required by the boot system program.
- /dev: This directory contains the external devices used in all Linux systems. But this is not the driver for the stored peripherals.
- /etc: This directory contains the various configuration files and subdirectories to be used in system administration. To use the network configuration file, file system, System configuration files, device configuration information, set up user information, etc. are in this directory.
- /home: If a user is set up and the user name is "XX", then there is a corresponding/home/xx path in the/home directory, which is used to store the user's main directory.
Linux directory structure