【发布时间】:2019-05-22 04:52:51
【问题描述】:
我已成功使用 QEMU Emulator 将 FreeBSD 安装到原始图像文件中。我已经使用 ZFS 文件系统 (ZFS POOL) 格式化了图像文件。
使用下面的命令我已经成功挂载了可以被zpool打开的镜像文件
sudo losetup /dev/loop0 [path-to-file].img
sudo kpartx -l /dev/loop0
sudo kpartx -av /dev/loop0
但是下一个命令显示如下......
sudo zpool import -R [MOUNT-PATH] -d /dev/mapper
我收到以下错误消息
The pool can only be accessed in read-only mode on this system. It
cannot be accessed in read-write mode because it uses the following
feature(s) not supported on this system:
com.delphix:spacemap_v2 (Space maps representing large segments are more efficient.)
The pool cannot be imported in read-write mode. Import the pool with
"-o readonly=on", access the pool on a system that supports the
required feature(s), or recreate the pool from backup.
我无法在网上找到有关名为“spacemap_v2”的功能的任何地方。如何安装它或如何将我的 zfs 池安装为可写。我知道我可以将它安装为只读,但这违背了我想要做的事情的目的,因为我希望能够在其可安装的平台界面中写入数据以复制/粘贴数据。
有谁知道如何做到这一点。我将不胜感激。
问候
【问题讨论】:
标签: solaris freebsd mount zfs ufs