/proc/fs
/proc/fs
是文件系统相关信息目录。通过 ls
命令可以查看目录下具体文件,通过 cat
命令可以查看文件具体信息。
/proc/fs
目录示例内容:
[root@sylixos:/root]# cd /proc/fs
[root@sylixos:/proc/fs]# ls
fssup procfs rootfs
目录/文件 | 描述(进程属性) |
---|---|
fssup | 文件系统支持信息文件 |
procfs | PROC 文件系统信息目录 |
rootfs | ROOT 文件系统信息目录 |
fssup
文件示例信息:
[root@sylixos:/proc/fs]# cat fssup
rootfs procfs ramfs romfs vfat nfs yaffs
procfs
目录示例信息:
[root@sylixos:/proc/power]# cd procfs/
[root@sylixos:/proc/procfs]# ls
stat
[root@sylixos:/proc/procfs]# cat stat
memory used : 0 bytes //文件大小;
total files : 47 //文件数量;
rootfs
目录示例信息:
[root@sylixos:/proc]# cd rootfs
[root@sylixos:/proc/rootfs]# ls
stat
[root@sylixos:/proc/rootfs]# cat stat
memory used : 3031 bytes //文件大小;
total files : 43 //文件数量;