zfs get all tank/dataset
zpool get all tank
zfs set syncoid:no-sync=true tank/users/attie/scratch
zfs set com.sun:auto-snapshot=false tank1/container/child
zfs set snapdir=visible tank/test
ffmpeg -i file.flv -vcodec libx264 -strict -2 out.mp4 |
# This uses /var/lib/docker as an example. | |
zpool labelclear -f /dev/sdb1 # if device was a zpool earlier on | |
fdisk /dev/sdb | |
d | |
n | |
w | |
mkfs.ext4 /dev/sdb1 |
openssl genrsa -out domain.key 2048
openssl req -new -sha256 -key domain.key -subj "/C=SE/ST=VG/O=Company, /CN=domain.com" -reqexts SAN -config <(cat /etc/ssl/openssl.cnf <(printf "\n[SAN]\nsubjectAltName=DNS:domain.com\n")) -out domain.csr
openssl x509 -req -extfile <(printf "subjectAltName=DNS:domain.com") -in my-new-domain.com.csr -CA cacert.pem -CAkey cakey.pem -out my-new-domain.com.crt -CAcreateserial -days 500 -sha256