Just as a follow up, since this might help others who are (like me) not that experienced with Ubuntu/Linux.
I was able to "solve" the problem by reverting to a previous kernel version. For my special case, I knew that everything worked before, so what I did was:
- search through the
apt
install log: pager /var/log/apt/history.log
I found output like this:
Start-Date: 2023-07-13 09:25:01
Commandline: /usr/bin/unattended-upgrade
Install: linux-modules-extra-6.2.0-25-generic:amd64 (6.2.0-25.25, automatic), linux-headers-6.2.0-25:amd64 (6.2.0-25.25, automatic), linux-modules-6.2.0-25-generic:amd64 (6.2.0-25.25, automatic), linux-image-6.2.0-25-generic:amd64 (6.2.0-25.25, au
tomatic), linux-headers-6.2.0-25-generic:amd64 (6.2.0-25.25, automatic)
Upgrade: linux-image-generic-hwe-22.04:amd64 (6.2.0.24.24, 6.2.0.25.25), linux-headers-generic-hwe-22.04:amd64 (6.2.0.24.24, 6.2.0.25.25), linux-generic-hwe-22.04:amd64 (6.2.0.24.24, 6.2.0.25.25), linux-libc-dev:amd64 (6.2.0-24.24, 6.2.0-25.25)
End-Date: 2023-07-13 09:25:27
Which - from my understanding - means that a new kernel version was installed (6.2.0-25.25).
Reboot, and choose previous kernel version during startup. You might need to un-hide the Grub menu.
Make the older kernel the default, by adding
GRUB_SAVEDEFAULT=true
GRUB_DEFAULT=saved
to /etc/defaults/grub
Any input as to how to debug the underlying issue would be very appreciated. But until then, I'll just stay at this kernel version and check new ones, to see if the problem is resolved.