在环回上挂载 rootfs

发布于 2024-07-04 18:31:42 字数 137 浏览 6 评论 0原文

我有一个 rootfs 启动映像,我想通过安装在本地文件系统上来测试它。 我怎样才能做到这一点 ?

编辑:该文件是 rootfs.img 但事实证明我的自定义内核中没有正确的文件系统支持。 一旦有 fs 支持,pjz 的答案就有效。

I have a rootfs boot image that I want to test by mounting on my local file system. How can I do this ?

EDIT: The file was a rootfs.img but it turned out I did not have the correct filesystem support in my custom kernel. pjz's answer works once the fs support is there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

暗地喜欢 2024-07-11 18:31:42

需要更多信息 - 它是什么样的图像?

它是一个文件系统吗? 如果是这样,您可以像这样安装它:

  mount -o loop rootfs.img /mnt/rootfs

如果它是您通过 NFS 导出的文件系统的子目录,您可以通过 chroot 来模拟您创建的环境:

  chroot /path/to/nfs/rootdir/

Need more info - what kind of image is it?

is it a file that's a filesystem? if so you mount it like:

  mount -o loop rootfs.img /mnt/rootfs

if it's a subdir of your filesystem that you're exporting via NFS, you can simulate the environment you've created by chrooting to it:

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