0

So I just build LFS system and it's working fine, but the annoying part is there's alert that every periode show like every 3 second. It said

root@LFS:# clocksource: timekeeping watchdog on CPU0: acpi_pm wd-wd readback delay of 643744ns
clocksource: wd-tsc-wd read-back delay of 182144ns, clock-skew test skipped!
clocksource: timekeeping watchdog on CPU0: acpi_pm wd-wd readback delay of 643744ns
clocksource: wd-tsc-wd read-back delay of 182144ns, clock-skew test skipped!
clocksource: timekeeping watchdog on CPU0: acpi_pm wd-wd readback delay of 643744ns
clocksource: wd-tsc-wd read-back delay of 182144ns, clock-skew test skipped!
...

This is annoying my bash prompt, I even can't see my output from bash prompt

1 Answers1

1

These are logs from the kernel which default to being displayed on the console (/dev/console) which most probably matches the tty terminal you used for login in.

This is of course usually suboptimal and most systems resort to some specific daemon in order to sort and archive logs : I personally use metalog, syslog-ng is well known, apparently LFS gets a dedicated packet sysklogd

I suggest you first ensure it is not running already (ps -ef | grep klogd), in which case you would have to correct its configuratrion file, and if not then install it, configure it (edit /etc/syslog.conf) and ensure it is launched at init time the sysVinit way.

MC68020
  • 6,281
  • 2
  • 13
  • 44