Tag: zfs

  • Proxmox – add SSD cache

    Proxmox – add SSD cache

    To increase the speed of your ZFS pool, you can add a SSD cache for faster access, write- and read speeds. You have to make 2 partitions, one for cache and another for log. format ssd into 2 logical partitions, type 48. For example both partitions, half the size of the SSD. fdisk /dev/sdf Show…

  • 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…