企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### :-: 根目录结构 ```bash $ uname -a Linux DESKTOP-0GQALN4 4.4.0-18362-Microsoft #836-Microsoft Mon May 05 16:04:00 PST 2020 x86_64 x86_64 x86_64 GNU/Linux2017 x86_64 GNU/Linux $ ls -al / 总用量 580 drwxr-xr-x 1 root root 512 8月 6 15:03 . drwxr-xr-x 1 root root 512 8月 6 15:03 .. drwxr-xr-x 1 root root 512 8月 6 16:23 bin drwxr-xr-x 1 root root 512 4月 17 00:06 boot drwxr-xr-x 1 root root 512 8月 15 14:38 dev drwxr-xr-x 1 root root 512 8月 15 14:38 etc drwxr-xr-x 1 root root 512 8月 6 15:04 home -rwxr-xr-x 1 root root 591344 1月 1 1970 init drwxr-xr-x 1 root root 512 8月 6 16:24 lib drwxr-xr-x 1 root root 512 8月 7 10:21 lib64 drwxr-xr-x 1 root root 512 4月 16 23:52 media drwxr-xr-x 1 root root 512 8月 6 15:03 mnt drwxr-xr-x 1 root root 512 4月 16 23:52 opt dr-xr-xr-x 9 root root 0 8月 15 14:38 proc drwx------ 1 root root 512 4月 16 23:59 root drwxr-xr-x 1 root root 512 8月 15 14:38 run drwxr-xr-x 1 root root 512 8月 6 16:26 sbin drwxr-xr-x 1 root root 512 10月 30 2019 snap drwxr-xr-x 1 root root 512 4月 16 23:52 srv dr-xr-xr-x 12 root root 0 8月 15 14:38 sys drwxrwxrwt 1 root root 512 8月 7 10:24 tmp drwxr-xr-x 1 root root 512 8月 6 15:31 usr drwxr-xr-x 1 root root 512 4月 16 23:59 var ``` 由于不同的发行版会有略微的不同,我们这里使用的是基于 Arch 的发行版 Manjaro,以上就是根目录下的内容,我们介绍几个重要的目录: • /bin、/sbin:链接到 /usr/bin,存放 Linux 一些核心的二进制文件,其包含的命令可在 shell 上运行。 • /boot:操作系统启动时要用到的程序。 • /dev:包含了所有 Linux 系统中使用的外部设备。需要注意的是这里并不是存放外部设备的驱动程序,而是一个访问这些设备的端口。 • /etc:存放系统管理时要用到的各种配置文件和子目录。 • /etc/rc.d:存放 Linux 启动和关闭时要用到的脚本。 • /home:普通用户的主目录。 • /lib、/lib64:链接到 /usr/lib,存放系统及软件需要的动态链接共享库。 • /mnt:这个目录让用户可以临时挂载其他的文件系统。 • /proc:虚拟的目录,是系统内存的映射。可直接访问这个目录来获取系统信息。 • /root:系统管理员的主目录。 • /srv:存放一些服务启动之后需要提取的数据。 • /sys:该目录下安装了一个文件系统 sysfs。该文件系统是内核设备树的一个直观反映。当一个内核对象被创建时,对应的文件和目录也在内核对象子系统中被创建。 • /tmp:公用的临时文件存放目录。 • /usr:应用程序和文件几乎都在这个目录下。 • /usr/src:内核源代码的存放目录。 • /var:存放了很多服务的日志信息