From 12addf4584b2ae14131984ccb265501491cb27fd Mon Sep 17 00:00:00 2001 From: exu Date: Wed, 3 Jul 2024 11:05:37 +0200 Subject: [PATCH] Change to using custom formatting --- .../overclocking/monitoring/default.en.md | 48 +++++++++++++++---- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/pages/02.linux/overclocking/monitoring/default.en.md b/pages/02.linux/overclocking/monitoring/default.en.md index 767ec64..626955d 100644 --- a/pages/02.linux/overclocking/monitoring/default.en.md +++ b/pages/02.linux/overclocking/monitoring/default.en.md @@ -43,18 +43,18 @@ A few interesting views: | Hardware | Supported | | -------- | --------- | -| CPU AMD | Minimal | -| GPU AMD | Yes | +| AMD CPU | Minimal | +| AMD GPU | Yes | -CoreCtrl displays a range of information for AMD GPUs. +CoreCtrl displays a range of information for AMD GPUs. -Make sure to set `amdgpu.ppfeaturemask=0xffffffff` as kernel option. +Make sure to set `amdgpu.ppfeaturemask=0xffffffff` as kernel option. ### Amdgpu Top | Hardware | Supported | | -------- | --------- | -| GPU AMD | Yes | +| AMD GPU | Yes | Amdgpu Top shows various statistics on GPU utilization (GFX, compute, decode, etc.) and a lot of GPU sensor information. The tool is available as TUI by running `amdgpu_top` in a terminal or as full GUI application with `amdgpu_top --gui` @@ -65,17 +65,45 @@ Some applications have hardware error reporting built-in. #### Kernel log -For others, try checking the kernel log. -`$ journalctl -k --grep=mce` +For others, try checking the kernel log. + +[shroot] + +``` +journalctl -k --grep=mce +``` + +[/shroot] #### Rasdaemon You can also install `aur/rasdaemon` and enable its two services. -```sh +[shroot] + +``` systemctl enable --now ras-mc-ctl.service systemctl enable --now rasdaemon.service ``` -`$ ras-mc-ctl --summary` shows all historic errors -`$ ras-mc-ctl --error-count` shows memory errors of the current session +[/shroot] + +Show historic errors + +[shroot] + +``` +ras-mc-ctl --summary +``` + +[/shroot] + +Show memory errors during the current session + +[shroot] + +``` +ras-mc-ctl --error-count +``` + +[/shroot]