尝试挂载 .img 文件时出现未知错误 -1

尝试挂载 .img 文件时出现未知错误 -1

我位于一个文件夹中,其中system.img。我想将其挂载到名为system

我在 ubuntu 15.04 服务器上执行此命令,经证实可在 Linux Mint 17.3 上运行

sudo mount -t ext4 -o loop system.img system/

但是我在我的 Ubuntu 服务器上出现了这个错误:

安装:系统/:安装失败:未知错误 -1

我无法诊断出问题所在。

供您参考:

sudo fdisk -lu system.img
Disk system.img: 1.9 GiB, 2013143040 bytes, 3931920 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

已经尝试使用-t auto

sudo mount -t auto -o loop system.img system/
mount: system/: mount failed: Unknown error -1

mount tempt 后的 msg 为空:

# sudo mount -t ext4 -o loop system.img system/
mount: system/: mount failed: Unknown error -1
# sudo dmesg | tail
#

可用空间足够:

df -H
Filesystem         Size  Used Avail Use% Mounted on
/dev/ploop23074p1   11G  6.9G  3.1G  70% /

在你提问之前:

  • 文件.img没有问题 [已检查文件 sha1]
  • 相同的 img 文件可以安装在 Mint 发行版上
  • system文件夹不存在

答案1

最后,我尝试使用具有更多 RAM 的机器,并且没有遇到任何问题。

因此,对于我的目的而言,Ubuntu 15.04 的 512 MB RAM 绝对太少了。

相关内容