more zfs stuff

This commit is contained in:
Christoph Cullmann 2024-05-30 17:51:22 +02:00
parent c524de48f0
commit 1ffc7dbdf8

View file

@ -54,37 +54,35 @@ cat /proc/partitions
# boot partition # boot partition
mkfs.fat -F 32 -n EFIBOOT $DISK-part1 mkfs.fat -F 32 -n EFIBOOT $DISK-part1
# create the crypto containers
cryptsetup luksFormat --sector-size 4096 --batch-mode --verify-passphrase $DISK-part2
sleep 5 sleep 5
# open them, set right options persistently # ZFS zpool creation with encryption
cryptsetup luksOpen --allow-discards --perf-no_read_workqueue --perf-no_write_workqueue --persistent $DISK-part2 crypt-system zpool create \
-o ashift=12 \
-o autotrim=on \
-O acltype=posixacl \
-O atime=off \
-O canmount=off \
-O compression=on \
-O dnodesize=auto \
-O normalization=formD \
-O xattr=sa \
-O mountpoint=none \
-O encryption=on \
-O keylocation=prompt \
-O keyformat=passphrase \
zpool $DISK-part2
sleep 5 sleep 5
lsblk --fs
# create btrfs with fast & strong checksumming and fast mounting
mkfs.btrfs -f --csum xxhash --features block-group-tree /dev/mapper/crypt-system
sleep 5
btrfs filesystem show
# create all the volumes # create all the volumes
mount /dev/mapper/crypt-system /mnt zfs create -o mountpoint=legacy zpool/data
btrfs subvolume create /mnt/data zfs create -o mountpoint=legacy zpool/nix
btrfs subvolume create /mnt/nix
btrfs subvolume create /mnt/root
sleep 5 sleep 5
btrfs subvolume list /mnt
# umount again, we will only use explicit subvolumes # prepare install, tmpfs root
umount /mnt mount -t tmpfs none /mnt
# prepare install
mount -o subvol=root,noatime,nodiratime /dev/mapper/crypt-system /mnt
# Create directories to mount file systems on # Create directories to mount file systems on
mkdir -p /mnt/{data,nix,home,boot,root,etc/nixos} mkdir -p /mnt/{data,nix,home,boot,root,etc/nixos}
@ -93,8 +91,8 @@ mkdir -p /mnt/{data,nix,home,boot,root,etc/nixos}
mount $DISK-part1 /mnt/boot mount $DISK-part1 /mnt/boot
# mount volumes # mount volumes
mount -o subvol=data,noatime,nodiratime /dev/mapper/crypt-system /mnt/data mount -t zfs zpool/data /mnt/data
mount -o subvol=nix,noatime,nodiratime /dev/mapper/crypt-system /mnt/nix mount -t zfs zpool/nix /mnt/nix
# bind mount persistent stuff to data # bind mount persistent stuff to data
mkdir -p /mnt/{data/home,data/root,data/nixos/$HOST} mkdir -p /mnt/{data/home,data/root,data/nixos/$HOST}
@ -128,7 +126,7 @@ nixos-install --option experimental-features 'nix-command flakes' --no-root-pass
# unmount all stuff # unmount all stuff
umount -Rl /data /mnt umount -Rl /data /mnt
cryptsetup luksClose crypt-system zpool export -a
# sync all /data after the install # sync all /data after the install
@ -147,19 +145,27 @@ wipefs -a $DD
sleep 5 sleep 5
# create the crypto containers # ZFS zpool creation with encryption
cryptsetup luksFormat --batch-mode --verify-passphrase $DD zpool create \
-o ashift=12 \
-o autotrim=on \
-O acltype=posixacl \
-O atime=off \
-O canmount=off \
-O compression=on \
-O dnodesize=auto \
-O normalization=formD \
-O xattr=sa \
-O mountpoint=none \
-O encryption=on \
-O keylocation=file:///data/nixos/key-vms.secret \
-O keyformat=passphrase \
vpool $DD
sleep 5 sleep 5
# open them, set right options persistently # create all the volumes
cryptsetup luksOpen --allow-discards --perf-no_read_workqueue --perf-no_write_workqueue --persistent $DD crypt-vms zfs create -o mountpoint=legacy vpool/vms
sleep 5 # update passphrase later
lsblk --fs # zfs change-key -o keylocation=file:///data/nixos/key-vms.secret vpool
# create btrfs with fast & strong checksumming and fast mounting
mkfs.btrfs -f --csum xxhash --features block-group-tree /dev/mapper/crypt-vms
sleep 5
btrfs filesystem show