Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 rootfs 启动映像,我想通过挂载到本地文件系统上来进行测试。我怎样才能做到这一点 ?
编辑:该文件是一个 rootfs.img 但事实证明我的自定义内核中没有正确的文件系统支持。一旦有 fs 支持,pjz 的答案就会起作用。
需要更多信息 - 它是什么样的图像?
它是一个文件系统吗?如果是这样,您可以像这样安装它:
mount -o loop rootfs.img /mnt/rootfs
如果它是您通过 nfs 导出的文件系统的子目录,您可以通过 chroot 来模拟您创建的环境:
chroot /path/to/nfs/rootdir/