Browse Source

Idk, stuff

Håvard O. Nordstrand 4 years ago
parent
commit
97bb8cff80
3 changed files with 7 additions and 2 deletions
  1. 1 0
      config/pc/applications.md
  2. 5 1
      config/server/debian.md
  3. 1 1
      config/server/linux-applications.md

+ 1 - 0
config/pc/applications.md

@@ -17,6 +17,7 @@ breadcrumbs:
     1. Answer with the default answers.
     1. At the end, allow it to add the modules to `/etc/modules`.
 1. Reload the `kmod` service to reload the modules.
+1. Watch the kernel log to check for sensor errors. If so, try to remove the modules added to `/etc/modules` with `modprobe -r <module>` to see if the error goes away. If so, remove it from the modules file.
 
 ### Configure Fancontrol
 

+ 5 - 1
config/server/debian.md

@@ -131,7 +131,11 @@ breadcrumbs:
     - Install firmware from other sources (e.g. for some Intel NICs).
     - Update microcode: Install `intel-microcode` (for Intel) or `amd64-microcode` (for AMD) and reboot (now or later).
 1. Install `smartmontools` and run `smartctl -s on <dev>` for all physical drives to enable SMART monitoring.
-1. Install `lm-sensors` and run `sensors-detect` to detect temperatur sensors etc. Add the modules to `/etc/modules` when asked.
+1. Setup `lm-sensors` to monitor sensors:
+    1. Install: `apt install lm-sensors`
+    1. Run `sensors-detect`. When it asks, add the modules to `/etc/modules` when asked.
+    1. Load new modules: `systemctl restart kmod`
+    1. Watch `journalctl` for sensor errors. If so, try to unload the modules with and then remove them from `/etc/modules` if it worked.
 1. Mask `ctrl-alt-del.target` to disable CTRL+ALT+DEL reboot at the login screen.
 
 #### QEMU Virtual Host

+ 1 - 1
config/server/linux-applications.md

@@ -659,7 +659,7 @@ Some I typically use.
 - [apt.sh (Prometheus Community)](https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/blob/master/apt.sh)
 - [yum.sh (Prometheus Community)](https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/blob/master/yum.sh)
 - [deleted_libraries.sh (Prometheus Community)](https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/blob/master/deleted_libraries.py)
-- [ipmitool (Prometheus Community)](https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/blob/master/ipmitool) (requires ipmitool)
+- [ipmitool (Prometheus Community)](https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/blob/master/ipmitool) (requires ipmitool) (**Warning:** This is slow, don't run it frequently. If you do, it may spawn more and more processes waiting to read the IPMI sensors. Run it manually to get a feeling.)
 - [smartmon.sh (Prometheus Community)](https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/blob/master/smartmon.sh) (requires smartctl)
 
 #### Setup and Usage