slackbuilds/system/rasdaemon
Julian Grinblat 094c5735ad
system/rasdaemon: Updated for version 0.8.3
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2025-03-15 09:19:12 +07:00
..
README
doinst.sh
rasdaemon.SlackBuild system/rasdaemon: Updated for version 0.8.3 2025-03-15 09:19:12 +07:00
rasdaemon.info system/rasdaemon: Updated for version 0.8.3 2025-03-15 09:19:12 +07:00
rc.rasdaemon
slack-desc

README

Rasdaemon is a RAS (Reliability, Availability and Serviceability)
logging tool. It records memory errors, using the EDAC tracing
events. EDAC is a Linux kernel subsystem with handles detection of
ECC errors from memory controllers for most chipsets on i386 and
x86_64 architectures. EDAC drivers for other architectures like
arm also exists.

In order to use rasdaemon, you must have mounted a debugfs
filesystem.

  sudo mount -t debugfs none /sys/kernel/debug

You can add this to fstab:

  debugfs    /sys/kernel/debug      debugfs  defaults  0 0

To have rasdaemon start and stop with your host,
add to /etc/rc.d/rc.local:

  if [ -x /etc/rc.d/rc.rasdaemon ]; then
    /etc/rc.d/rc.rasdaemon start
  fi

and to /etc/rc.d/rc.local_shutdown (creating it if needed):

  if [ -x /etc/rc.d/rc.rasdaemon ]; then
    /etc/rc.d/rc.rasdaemon stop
  fi