我想创建一个可以使用 ext3 分区类型挂载的 ISO 映像。我怎样才能做到这一点?
我正在使用这个命令:
[root@manage upload]# dd if=testParti.txt of=./diskImage.iso
41+1 records in
41+1 records out
Run Code Online (Sandbox Code Playgroud)
然后当我尝试使用以下命令安装它时:
/bin/mount -o loop -t ext3 diskImage.iso /tmp/upgrade
Run Code Online (Sandbox Code Playgroud)
我收到此错误:
mount: wrong fs type, bad option, bad superblock on /dev/loop0,
or too many mounted file systems
(aren't you trying to mount an extended partition,
instead of some logical partition inside?)
Run Code Online (Sandbox Code Playgroud)