从 FreeNAS 迁移到 Ubuntu 服务器

从 FreeNAS 迁移到 Ubuntu 服务器

所以我刚刚购买并安装了 HP Proliant Microserver gen8,并将其升级到 10GB RAM。我按照建议将 FreeNAS 安装在 USB 密钥(16GB)上,FreeNAS 运行良好。不幸的是,我当时不了解 FreeNAS 的局限性,我发现它不适合我和我的情况。

为此,我想要将 Ubuntu 服务器安装到微服务器上并重用现有的 ZFS 池,而不是将所有数据从驱动器中复制回来,因为我已经忙于移动数据一段时间了。

我有 4 个 3Tb 驱动器,分成 2 个池,每个池都有一个 3Tb 镜像。我确实订购了一个 SSD,所以我将用它来存储操作系统。我可以按原样重复使用这些驱动器吗?还是我面临着擦除它们并重新设置它们的麻烦?任何建议或信息都非常感谢。

非常感谢

答案1

  • 在 ubuntu 上安装 zfs 工具
PS> sudo apt install zfsutils-linux
  • 查看可用的 zpools
PS> zpool import
   pool: zpool
     id: 4668569581804914545
  state: ONLINE
 status: Some supported features are not enabled on the pool.
 action: The pool can be imported using its name or numeric identifier, though
        some features will not be available without an explicit 'zpool upgrade'.
 config:

        zpool       ONLINE
          raidz1-0  ONLINE
            sde     ONLINE
            sdc     ONLINE
            sdd     ONLINE
            sdf     ONLINE
  • 导入 zpool
PS> sudo zpool import zpool -f
PS> zpool status
  pool: zpool
 state: ONLINE
status: Some supported features are not enabled on the pool. The pool can
        still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
        the pool may no longer be accessible by software that does not support
        the features. See zpool-features(5) for details.
  scan: scrub repaired 0B in 30h35m with 0 errors on Mon Jul 15 06:35:09 2019
config:

        NAME        STATE     READ WRITE CKSUM
        zpool       ONLINE       0     0     0
          raidz1-0  ONLINE       0     0     0
            sde     ONLINE       0     0     0
            sdc     ONLINE       0     0     0
            sdd     ONLINE       0     0     0
            sdf     ONLINE       0     0     0

相关内容