The systemd-journald is service in Linux OS that collects and stores the logging data.
On some Linux distributions it is often found that systemd-journald service is consuming more than 90% or some times nearly 100% of CPU resources.
So here's a fix for this problem...
Open your terminal and type following command.(You can use text editor of your choice.)
sudo vi /etc/default/grub
Find a the line that begins with
GRUB_CMDLINE_LINUX_DEFAULT=" "
There will be some parameters inside double quotation mark.
Add this parameter there...
pci=nomsi
And save this file.
Now run following command in terminal...
sudo update-grub
This will take little time to complete.
After this reboot the system and your problem is Solved!
You can check the usage of all processes in system monitor or htop program.
Comments
Post a Comment