ZFS einrichten und verwalten

ZFS erstellen

ZFS auf debian erstellen:
Installation der benötigten Pakete:

apt-get install zfs-fuse

ZFS partition erstellen:

zpool create meinzfs /dev/sdb1

Deduplizierung konfigurieren:

zfs set dedup=on meinzfs

Kompression konfigurieren:

zfs set compression=on meinzfs

wenn der Plattenplatz eng wird, eine neue Platte hinzufügen

zpool add -f meinzfs /dev/sdc1   

verlorene ZFS-Partition wiederherstellen

zpool import -f meinzfs

oder

zpool import -d /dev/ zpool -f

Deduplizierungsfunktion auslesen

zdb -S meinzfs

Belegung auslesen

zpool list
zpool list -Ho capacity
zpool list -Ho free
zpool list -H0 allocated
zpool list -Ho size

Status auslesen

zpool status
zpool list -Ho health

neu mounten

zfs mount -a