mkfs 用于新文件系统
您好,我创建了一个新的文件系统,名称为“ntr”。初始化模块(insmod)后,文件系统名称将显示在 /proc/filesystems 中。现在我希望将此文件系统安装在我的随身碟上。我尝试了 mkfs,但由于 mkfs.ntr 不存在,所以我没有成功。有人可以告诉我如何创建 mkfs.ntr 吗?
Hi I have created a new file system say with name"ntr". After initializing the module (insmod) filesystem name is getting displayed in /proc/filesystems. Now I want this file system to be mounted on my pendrive. I tried mkfs, but as mkfs.ntr doesnot exist, I was unsuccessful. Can someone please tell me how to create mkfs.ntr?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您编写了文件系统驱动程序,那么只有您知道如何初始化其元数据。您可能应该首先创建一个在块设备上运行的独立程序,一旦运行,将其与
mkfs
工具集成。If you wrote a filesystem driver, only you know how to initialize its metadata. You should probably first start with making a standalone program that operates on a block device, and once that works, integrate it with the
mkfs
tool.嗯,这是两个不同的事情。例如,mkfs.ext4 是 /sbin 文件夹中 mke2fs 的链接。 mke2fs 是创建文件系统的工具。它附带 e2fsprogs 包。如果您想要一个工具来创建文件系统,那么...您可以制作它和/或将文件系统的结构添加到 e2fsprogs。
well these are two separated things. mkfs.ext4 for example is a link to mke2fs in /sbin folder. and mke2fs is a tool for creating filesystems. it comes with e2fsprogs package. if you want to have a tool to create your filesystem, well... you can make it and/or add the structure of your filesystem to e2fsprogs.