MichaIng
MichaIng
The last partition detection somehow failed, so that it could not be downsized along with the filesystem, and also caused the syntax error at line 514. Can you show the...
It detects the first partition as last 🤔. Can you show this again: ```sh lsblk -rnpo NAME /dev/sda lsblk -rnpo NAME /dev/sda | tail -1 lsblk -npo NAME /dev/sda |...
Is it by chance a Bullseye host system? I found again the report and debugging of `-r` messing up partition order, but just on Bullseye: https://github.com/MichaIng/DietPi/issues/2630#issuecomment-2323534747 In this case, without...
Fixed with: https://github.com/MichaIng/DietPi/commit/447816c Would be great if you could give it a try. The output above + whether it is a Bullseye system would be still good to know, just...
This is a block device reading error of the source device, i.e. something wrong with it, like underpowered? Check for kernel errors: ```sh dmesg -l 0,1,2,3 ```
Did you install/compile the ZFS kernel module? This is not part of the kernel by default, but needs to be added via DKMS, which also requires kernel headers. Which kernel...
Try this: ```sh apt install linux-headers-vendor-rk35xx apt install zfs-dkms ```
So `zfs-dkms` was installed already, but the headers were likely missing before. Please try to reconfigure it to compile the kernel module: ```sh dpkg-reconfigure zfs-dkms ```
Can you paste the output of the module build? And: ```sh modinfo zfs ```
The `netfilter-persistent` service hangs forever. But before that, `ifupdown-pre` fails. It basically waits for udev to settle, before network connections can be reliably established, else the network adapters might not...