Month: November 2017

  • Proxmox ZFS Failed To Import Pool ‘rpool’

    boot into emergency mode (in the grub menu, hit “e”, and add ” emergency” to the end of the line starting with “linux”, then press ctrl+x) if needed, manually import your rpool in the initramfs prompt like you did in your first post (“zpool import -N rpool” followed by “exit”) enter your root password when…

  • ZFS cheat sheet

    Pool Related Commands # zpool create datapool c0t0d0 Create a basic pool named datapool # zpool create -f datapool c0t0d0 Force the creation of a pool # zpool create -m /data datapool c0t0d0 Create a pool with a different mount point than the default. # zpool create datapool raidz c3t0d0 c3t1d0 c3t2d0 Create RAID-Z vdev…