zfs send 接收后无文件

zfs send 接收后无文件

我已经运行了zfs send -Rv old_pool@snapshot_20190106 | zfs receive -Fd new_pool,但传输完成后,new_pool 中没有创建任何文件。我在虚拟机(全新安装)中尝试了相同的命令,文件在那里,复制到了 new_pool。虚拟机测试中的文件大约为 500MB,实时 freenas 上的文件大约为 800GB。

我的目标是将 old_pool 复制到 new_pool,因为 old_pool 没有启用压缩。我的命令不正确吗?还有其他方法可以实现此目的吗?

答案1

您做得对,但可能未安装。请执行以下操作:

zpool export new_pool
zpool import new_pool

使用以下命令查看物品的安装位置:

zfs list

然后在相关位置查找您的文件。

相关内容