Defekte Grub-Konfiguration unter Ubuntu 19.10 mit ZFS

Defekte Grub-Konfiguration unter Ubuntu 19.10 mit ZFS

mein Apt ist kaputt, weil die Grub-Konfiguration fehlgeschlagen ist.

Es sieht so aus, als würde Grub versuchen, Linux-Images in meinen ZFS-Snapshots zu finden:

Setting up linux-image-5.3.0-23-generic (5.3.0-23.25) ...
Processing triggers for man-db (2.8.7-3) ...
Processing triggers for linux-image-5.3.0-23-generic (5.3.0-23.25) ...
/etc/kernel/postinst.d/initramfs-tools:
update-initramfs: Generating /boot/initrd.img-5.3.0-23-generic
cryptsetup: ERROR: Couldn't resolve device rpool/ROOT/ubuntu_q9qi62
cryptsetup: WARNING: Couldn't determine root device
I: The initramfs will attempt to resume from /dev/sda5
I: (UUID=a9d90fb7-5154-4897-9a2e-90c040c8ee90)
I: Set the RESUME variable to override this.
/etc/kernel/postinst.d/zz-update-grub:
Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: vmlinuz-5.3.0-18-generic in rpool/ROOT/ubuntu_q9qi62
Found initrd image: initrd.img-5.3.0-18-generic in rpool/ROOT/ubuntu_q9qi62
Found linux image: vmlinuz-5.3.0-19-generic in rpool/ROOT/ubuntu_q9qi62
Found initrd image: initrd.img-5.3.0-19-generic in rpool/ROOT/ubuntu_q9qi62
Found linux image: vmlinuz-5.3.0-23-generic in rpool/ROOT/ubuntu_q9qi62
Found initrd image: initrd.img-5.3.0-23-generic in rpool/ROOT/ubuntu_q9qi62
/etc/grub.d/10_linux_zfs: 338: .: Can't open /tmp/zfsmnt.rcbjOa/etc/.zfs/snapshot/autobackup-sd25sfd-2019-10-23--17-41-11/os-release
umount: /tmp/zfsmnt.rcbjOa: target is busy.
rmdir: failed to remove '/tmp/zfsmnt.rcbjOa': Device or resource busy
run-parts: /etc/kernel/postinst.d/zz-update-grub exited with return code 127
dpkg: error processing package linux-image-5.3.0-23-generic (--configure):
 installed linux-image-5.3.0-23-generic package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 linux-image-5.3.0-23-generic

Ich verwende die standardmäßige Ubuntu19.10-ZFS-Konfiguration des Installationsprogramms.

Antwort1

Alt, aber ohne Verachtung, also …

Ich bin gerade auf dieses Problem gestoßen. Es stellte sich heraus, dass der Sophos AV-Scanner automatisch neue Einhängepunkte unter /tmp scannte. Dies führte zu einer Sperre des Dateisystems. Das Deaktivieren von Sophos während der Ausführung der Updates hat das Problem behoben.

Das Hinzufügen der folgenden Hooks sollte auch zukünftige Probleme beheben

root@:/etc/grub.d# ls -tlr *sophos*
-rwxr-xr-x 1 root root 45 Feb  9 13:16 01_sophos
-rwxr-xr-x 1 root root 46 Feb  9 13:16 999_sophos
root@:/etc/grub.d# cat *sophos*
#!/bin/sh

systemctl stop sophos-spl.service
#!/bin/sh

systemctl start sophos-spl.service
root@abl-nonprod-agent-02:/etc/grub.d#

 

verwandte Informationen