无法连接两个 ubuntu 系统

无法连接两个 ubuntu 系统

我刚刚拿到了新的 ThinkPad X121e 并安装了 Ubuntu 11.10 ..一切都很好,只是我无法将数据从旧 EeePC(Ubuntu 10.4)传输到我的新宝贝。EeePC 说它无法安装 Ubuntu 11.10 i386,因为:

Error mounting: mount: wrong fs type, bad option, bad superblock on
/dev/loop0,
missing codepage or helper program, or other error

(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
In some cases useful info is found in syslog - try
dmesg | tail or so

出了什么问题?我该如何修复?

谢谢!!丽莎

答案1

您正在使用什么命令?

对于我来说,这个错误是由于打字错误引起的:

sudo mount -t iso9660 /Desktop/test.iso /media/iso -o loop

如果我使用“〜”运行命令,一切都很好:

sudo mount -t iso9660 ~/Desktop/test.iso /media/iso -o loop

相关内容