我最近在 Latitude E6540 上安装了带有 Gnone 的 Ubuntu 20.04。
每个小时,计算机的运行速度都会变慢,有时候甚至会完全冻结,我不得不进行硬重启。
系统日志没有给我足够的信息,我只看到作业正在运行,如果我在作业期间观看流式视频,视频就会滞后,我必须停止它并等待几分钟才能恢复正常。
Feb 6 20:34:30 mycomp systemd[1]: Started Run anacron jobs.
Feb 6 20:34:30 mycomp anacron[26357]: Anacron 2.3 started on 2021-02-06
Feb 6 20:34:30 mycomp anacron[26357]: Normal exit (0 jobs run)
Feb 6 20:34:30 mycomp systemd[1]: anacron.service: Succeeded.
知道如何追踪该问题吗?
crontab:
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
减速之前释放 -h:
total used free shared temp/cache available
Mem: 15Gi 4,0Gi 5,6Gi 1,0Gi 5,9Gi 10Gi
Exchange partition: 2,0Gi 0B 2,0Gi
减速后释放 -h:
total used free shared temp/cache available
Mem: 15Gi 4,1Gi 5,5Gi 971Mi 6,0Gi 10Gi
Exchange partition: 2,0Gi 0B 2,0Gi
等/anacrontab:
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
HOME=/root
LOGNAME=root
# These replace cron's entries
1 5 cron.daily run-parts --report /etc/cron.daily
7 10 cron.weekly run-parts --report /etc/cron.weekly
@monthly 15 cron.monthly run-parts --report /etc/cron.monthly
答案1
如果你想立即缓解,请使用 crontab -e
然后在包含小时工的行的第一列中输入井号(#),然后保存文件。
该行中的 run-parts 命令可能存在配置错误。我认为它不应该包含“-- report”,但这是我的假设。
问候,mondotofu