免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3506 | 回复: 5
打印 上一主题 下一主题

get_fs_type函数 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-01-04 11:24 |只看该作者 |倒序浏览
我使用了get_fs_type这个函数,请问哪位大哥知道编译时候要链接哪个library啊?
还有,哪里有地方可以查询那个函数需要链接哪个库啊?

论坛徽章:
0
2 [报告]
发表于 2007-01-05 14:16 |只看该作者
没有说明作什么用的,但是冥冥之中还能感觉到你是想要获取磁盘分区信息的,这个函数好像没有(如果有的话那我道歉^_^)
如果我猜测错误的话,下面的就不要看了.
如果我猜对的话,你应该看这些函数:



  1. FILE *setmntent(const char *filename, const char *type);

  2. struct mntent *getmntent(FILE *fp);

  3. int addmntent(FILE *fp, const struct mntent *mnt);

  4. int endmntent(FILE *fp);

  5. char *hasmntopt(const struct mntent *mnt, const char *opt);

  6. struct mntent *getmntent_r(FILE *fp, struct mntent *mntbuf,char *buf, int buflen);
复制代码

df 的源代码,coreutils中有,修改一下就能用

[ 本帖最后由 duanjigang 于 2007-1-5 14:18 编辑 ]

论坛徽章:
0
3 [报告]
发表于 2007-01-05 16:00 |只看该作者

回复 2楼 duanjigang 的帖子

谢谢2楼的,其实是这样的,fdisk -l可以列出分区格式,EXT2 NTFS FAT之类的,我就去稍微研究了一下下,然后
突然发现在内核的src中fs/super.c当中有用到这个get_fs_type函数,我把他的#include复制过来然后调用了这个函数,死活编译不过,所以我就找这个函数的库,nm -o /usr/lib/lib*.*过了还是没有,就觉得奇怪,所以上来问问各位大哥。。。

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
4 [报告]
发表于 2007-01-05 21:11 |只看该作者
man statfs

这个就能获得fs的type.

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
5 [报告]
发表于 2007-01-05 21:12 |只看该作者
struct statfs {
                 long    f_type;     /* type of filesystem (see below) */
                 long    f_bsize;    /* optimal transfer block size */
                 long    f_blocks;   /* total data blocks in file system */
                 long    f_bfree;    /* free blocks in fs */
                 long    f_bavail;   /* free blocks avail to non-superuser */
                 long    f_files;    /* total file nodes in file system */
                 long    f_ffree;    /* free file nodes in fs */
                 fsid_t  f_fsid;     /* file system id */
                 long    f_namelen;  /* maximum length of filenames */
              };

论坛徽章:
0
6 [报告]
发表于 2007-01-05 22:36 |只看该作者

回复 5楼 mq110 的帖子

谢谢了,又学到东西了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP