The first symptom of the problems was that it could not mount cifs mounts from fstab.
Code: Select all
$ sudo mount /mnt/nas
mount error: cifs filesystem not supported by the system
mount error(19): No such device
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Code: Select all
$ modprobe cifs
modprobe: ERROR: ../libkmod/libkmod.c:586 kmod_search_moddep() could not open moddep file '/lib/modules/4.19.75-v7l+/modules.dep.bin'
modprobe: FATAL: Module cifs not found in directory /lib/modules/4.19.75-v7l+
Code: Select all
$ ls /lib/modules/
total 24K
drwxr-xr-x 6 root root 4.0K Jan 21 06:21 ./
drwxr-xr-x 16 root root 4.0K Jan 2 12:14 ../
drwxr-xr-x 3 root root 4.0K Jan 25 12:49 4.19.93+/
drwxr-xr-x 3 root root 4.0K Jan 25 12:49 4.19.93-v7+/
drwxr-xr-x 3 root root 4.0K Jan 25 12:49 4.19.93-v7l+/
drwxr-xr-x 3 root root 4.0K Jan 25 12:49 4.19.93-v8+/
Code: Select all
$ uname -a
Linux rpi4-ssd 4.19.75-v7l+ #1270 SMP Tue Sep 24 18:51:41 BST 2019 armv7l GNU/Linux
Code: Select all
cat /boot/cmdline.txt
console=serial0,115200 console=tty1 root=PARTUUID=6c586e13-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait root=/dev/sda2 rootfstype=ext4 rootwait
I would hate to reinstall everything from scratch...