Change to using custom formatting

This commit is contained in:
exu 2024-07-03 11:05:37 +02:00
parent b5ddb0e927
commit 12addf4584

View File

@ -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]