2

我需要在不使用 /proc/mounts 的情况下解析已安装文件系统的表,因为我正在解析它以确定 proc 文件系统的安装位置。我该怎么做?

我用谷歌搜索过,但所有答案都是使用 /proc

为什么人们如此确定 procfs 已安装到默认位置?


我是出于好奇而问的。我知道 /proc 是事实上的标准,许多工具都使用它,因此 /proc 锚定得很好。

Linux API 对文件系统路径是一致的,所有真正需要的信息都通过环境变量传递,从而可以更改库和可执行文件、配置文件等。

我很好奇是否可以在PROC_PATH没有先验知识的情况下进行检测?我可能会用 statvfs 作为回调来做 ftw,但这太不优雅了。绝对应该有更直接的方式。

4

2 回答 2

3

查看 /etc/mtab,它会跟踪挂载的文件系统。

于 2013-05-15T13:01:32.500 回答
2

怎么样df -k?谷歌也引导我这样做

在你的 Mac 上diskutil list

如果您想弄清楚您需要在c代码中执行哪些系统调用,请使用strace来找出它。


假设您可以访问/根目录的另一种方法使用 Petesh代码和 llolydm代码

#include <stdlib.h>
#include <mntent.h>
#include <unistd.h>
#include <sys/types.h>
#include <dirent.h>
#include <stdio.h>


   void listdir(const char *name, int level)
{
    DIR *dir;
    struct dirent *entry;
    struct mntent *ent;
    FILE *aFile;

    if (!(dir = opendir(name)))
        return;
    if (!(entry = readdir(dir)))
        return;

    do {
        if (entry->d_type == DT_DIR) {
            char path[1024];
            int len = snprintf(path, sizeof(path)-1, "%s/%s", name, entry->d_name);
            path[len] = 0;
            if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
                continue;
            printf("%*s[%s]\n", level*2, "", entry->d_name);
            listdir(path, level + 1);

        }
        else {
            printf("%*s- %s\n", level*2, "", entry->d_name);
            aFile = setmntent(entry);
            while (NULL != (ent = getmntent(aFile))) {
                 printf("%s %s\n", ent->mnt_fsname, ent->mnt_dir);
            }
            endmntent(aFile);

        }
    } while (entry = readdir(dir));
    closedir(dir);
}

int main(void)
{
    listdir("/", 0);
    return 0;
}
于 2013-05-15T12:51:55.627 回答