hjohnson@fysetc-desktop:~$ sudo mount rootf_dev_test.img imgmount mount: /home/hjohnson/imgmount: wrong fs type, bad option, bad superblock on /dev/loop6, missing codepage or helper program, or other error.
时间: 2024-03-23 20:36:18 浏览: 58
Ubuntu18.04挂载新的硬盘到文件管理系统中 wrong fs type, bad option, bad superblock on /dev/sdb
这个错误提示表明无法挂载名为rootf_dev_test.img的镜像文件到目录imgmount中,原因可能是文件系统类型不匹配或者文件系统损坏。请确保文件系统类型正确,并尝试使用 `-o loop`选项来挂载镜像文件,如下所示:
```
sudo mount -o loop rootf_dev_test.img imgmount
```
如果文件系统已经损坏,则可以尝试使用文件系统修复工具来修复问题。
阅读全文