Spyke

Syndicated from the fediverse. Read and engage on the original instance.

View original on sopuli.xyz
linux·Linuxbyvortexal

When I shutdown my computer last night, it gave me this error message. It seems to be working fine but should I be considered?

I'm not sure what fixed it because I tried multiple things yesterday, but it shutdown normally last night.

View original on sopuli.xyz
95

38 replies

lemmy.ml

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.

45
vortexalreply
sopuli.xyz

I'm using the XFCE edition of Linux Mint. The Kernel updated yesterday morning, could that have something to do with it?

8
inetknghtreply
lemmy.ml

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

17

I don't know what the previous version was but I'll still post about it to the forums. Thanks.

3
qjkxbmwvzreply
lemmy.sdf.org

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.

4
lemmy.ml

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.

16
vortexalreply
sopuli.xyz

How would I reinstall it? I tried to look it up but I couldn't find anything.

3
InFerNoreply
lemmy.ml

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.

7
ReakDuckreply
lemmy.ml

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.

2
vortexalreply
sopuli.xyz

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.

2
feddit.de

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.

12
vortexalreply
sopuli.xyz

Ok but is there anything notable from this error message, like anything specific that I should be checking out for?

6
vojelreply
feddit.de

First line of your picture is a hint for a software issue. I would just google that.

5
vortexalreply
sopuli.xyz

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?

1
Morphitreply
feddit.uk

ldconfig sets up links and caches for loading library code. That might be an issue if your install is broken between updates. You can use ldd to check if code can be looked up. ldd /usr/lib/x86-64-linux-gnu/libpcre2-8.so.0 should show no errors. Likewise for ldd /usr/sbin/init.

(Your paths may vary)

2
vortexalreply
sopuli.xyz

Ok, so Synaptic Package Manager states that it's installed in the exact location you say that it's supposed to be in but ldd states "No such file or directory". What's going on here?

2
vojelreply
feddit.de

Did it help though? Same error or is the system shutting down fine now?

1
vojelreply
feddit.de

What prevents you from shutting it down right now?!

2

It's probably just paranoia but every laptop I've ever owned has had a problem pertaining to repeatedly turning them off and on again. This laptop is my mom's and I'm just using it because my old one stopped working and I really don't want to break this one too.

0

I have no idea what those are, unless Linux Mint (at least the XFCE edition) has one of those installed by default, I'm pretty sure I don't have any of those installed.

4
kbin.social

You could look at the package that's mentioned in the first line in Synaptic. The error message says it can't find a file. Fürst thing is do is check if that fike is actually there.

9
exureply
feditown.com

I might be totally wrong, but libpcre sounds like the regex library used by perl. Maybe his perl packages are broken?

8

Almost. It's a C library that mimics Perl's regular expression facilities. Fairly common dependency for any number of packages.

3

Apt says it's installed. Someone said something about reinstalling it but I couldn't find anything online about reinstalling.

1
feddit.ch

Your libpcre seems broken. Reinstall the package that contains this file.

8

I did that yesterday and it might have fixed it because I didn't have the issue but I did try multiple things yesterday, so I'm not sure.

2
lemmy.world

You seem to have removed libpcre2 library. Try to reinstall it using your package manager.

3
vortexalreply
sopuli.xyz

Synaptic Package Manager states that there are several versions of libpcre2 installed, which one should I try to reinstall?

1

It seems the 'libpcre2-8-0' is installed and the first line in your first screenshot complains about that one. If it is not solved, run 'ldd /sbin/shutdown' and you should see where it expects libpcre2 to be. 'ls' that path and see if it is there. If it is, is it on another mount than root that gets unmounted too early or something? If it is not there, try reintalling the package, or see where the package puts that library file. If it is in the wrong place, use 'ln -s' to create a symbolic link to where shutdown expects it.

3

In addition to the other things mentioned, check the health of your drive. This could be a symptom of corruption.

1

You reached the end