I tried to upgrade my system from Ubuntu 14.04. My laptop froze for a few hours. Not even the pointer did anything. So I switched off by pressing the power button for a few seconds. This uncompleted installation is the origin of my problem. When I reboot the system, grub appears and then, the following message:
[FAILED] Failed to start Load Kernel Modules
See 'systemctl status systemd-modules-load.service' for details
Plus some other lines that end with a final:
Failed to start Load Kernel Modules
When I open a command line by pressing CTRL+ALT+F1 I'm able to enter
sudo systemctl status systemd-modules-load.service
and I get the following output:
status systemd-modules-load.service
If I repeat the systemctl
command, I get sometimes other process instead of 179, for example, 183.
Just in case it's needed,
sudo ls /lib/systemd/system/systemd-modules-load.service
gives me
/lib/system/systemd-modules-load
(written in green)
journalctl
outputs a lot of data. The red lines are the following ones:
First red line:
Second and third red line:
Fourth red line:
I really appreciate a little bit of help here. I don't know what to do next and I've searched the web finding nothing.
apt-get update
) didn't help. But your pointer to the article's second command (dpkg --configure -a
) did the job. Now that my machine is back in action (and I'm not stuck on my phone), I see that the article advises that the commands may need to be repeated "in no specific order". In case that article disappears, the other two commands areapt-get dist-upgrade
andapt-get -f install
. – Steve Oct 25 '16 at 16:44apt-get
updateonly really needs to come before the
apt-get dist-upgrade. You should avoid running a dist-upgrade if you don't know what you are doing, especially if
dpkg --configure -aalready works for you. Similarly, use
apt-get -f install` as a last resort as it can severely break your system. – virtualxtc Aug 28 '18 at 21:32