I’m not sure what fixed it because I tried multiple things yesterday, but it shutdown normally last night.
Yes this is a kernel panic which occurs when something goes terribly wrong inside the system. This could be anything from broken software to defective hardware. You should observe if this happens regurlarly.
Ok but is there anything notable from this error message, like anything specific that I should be checking out for?
First line of your picture is a hint for a software issue. I would just google that.
I tried seaching it online but the only I could find (that I understood how to use it) was to run “sudo ldconfig” which didn’t seem to day anything. I have no idea if that actually fixed the problem or not but if it didn’t, do you have any other solutions?
Attempting to kill init means that something tried to kill PID 1. That’s… abnormal outside of a shutdown. But it can be normal during shutdown. So uhh… yeah: if it continues to be a problem then it needs to be reported and fixed by your distribution. What distribution are you using?
I see kernel panics at shutdown most often on Arch-based distros after updating system packages.
It sucks when it happens during shutdown but it’s typically not going to cause other problems… except perhaps not automatically booting if you wanted to reboot instead of shutdown.
I’m using the XFCE edition of Linux Mint. The Kernel updated yesterday morning, could that have something to do with it?
A kernel update, if it’s done right, shouldn’t cause a panic. But not every distro does updates right.
If you know the old version and the new version then it might be useful to reach out to the Mint community and see if they’re aware of issues like that.
https://linuxmint.com/getinvolved.php -> forums or chat might be fruitful to you
I see kernel panics at shutdown most often on Arch-based distros after updating system packages.
When I tried Arch, upgrading kernel would delete the kernel modules of the running kernel — somewhat unimpressive upgrade process.
You seem to have removed libpcre2 library. Try to reinstall it using your package manager.
I’d reinstall libpcre, looks like it’s gotten broken?
The kernel panic should be a direct result of shutdown (which I guess at this point is init/pid1) not finding its dependency and killing itself.
How would I reinstall it? I tried to look it up but I couldn’t find anything.
sudo apt-get install --reinstall
https://duckduckgo.com/?q=apt+reinstall+package&t=fpas&ia=qa&iax=qa
Not sure how you searched but I assume you didn’t use or know apt? How do you install packages in the first place? Through GUI or Terminal?
EDIT: I assume you use the Linux Mint GUI package manager. I can’t find how to do this too, would need to search more detailed but I don’t have enough time for this now, need sleep, don’t have enough sleep.
I know about and have used apt, I install pretty much everything through the terminal. What I searched for was “how to reinstall libpcre” because I thought that it required a specific method or something due to the fact that it’s a system library.
Anyways, it reinstalled it but I wont know if it fixed the issue until tonight.
apt install --reinstall PKG_NAME
Is the command to reinstall a package, replace PKG_NAME with the name of the package you want to reinstall.
You should use apt instead of apt-get. It is newer, more user friendly and supposedly handles dependency resolution better.