mkfs 用于新文件系统

发布于 2024-10-20 10:38:03 字数 157 浏览 2 评论 0原文

您好,我创建了一个新的文件系统,名称为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦中楼上月下 2024-10-27 10:38:03

如果您编写了文件系统驱动程序,那么只有您知道如何初始化其元数据。您可能应该首先创建一个在块设备上运行的独立程序,一旦运行,将其与 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.

如梦初醒的夏天 2024-10-27 10:38:03

嗯,这是两个不同的事情。例如,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文