使用 mount 版本 2.21.2 时,每次尝试挂载 romfs 映像时都会出现此错误
sudo mount -t romfs mlsrc.img mp/
mount: unknown filesystem type 'romfs'
我正在运行内核为 3.4.7 的 arch linux
答案1
romfs
不是 mount 可识别的文件系统类型。请尝试mount -o loop mlsrc.img mp/
。
答案2
显然,Arch 内核是在没有 romfs 支持的情况下编译的,因此必须自己编译支持 romfs 的内核。感谢 arch linux irc 频道 #archlinux @ freenode 上的 gtkmanfred。他向我介绍了一种称为 ABS 的东西:https://wiki.archlinux.org/index.php/Arch_Build_System 以下是如何使用它来构建内核:https://wiki.archlinux.org/index.php/Kernels/Compilation/Arch_Build_System