2024-03-12 11:09:48 +01:00
|
|
|
# dasharo-acpi
|
|
|
|
|
|
2025-05-05 12:31:00 +02:00
|
|
|
dasharo-acpi is a Linux kernel driver for hardware monitoring on supported
|
|
|
|
|
platforms with Dasharo firmware.
|
|
|
|
|
|
|
|
|
|
Supported platforms:
|
|
|
|
|
|
|
|
|
|
| Platform | Starting with FW version |
|
|
|
|
|
| --- | --- |
|
|
|
|
|
| NovaCustom 11th Gen | v1.6.0 |
|
|
|
|
|
| NovaCustom 12th Gen | v1.8.0 |
|
|
|
|
|
| NovaCustom 14th Gen | v1.0.0 |
|
|
|
|
|
|
2024-03-12 11:09:48 +01:00
|
|
|
## Requirements
|
|
|
|
|
|
|
|
|
|
- dkms
|
|
|
|
|
- kernel headers
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
2025-05-05 12:31:00 +02:00
|
|
|
### Install dependencies
|
|
|
|
|
|
2025-03-26 12:11:51 +01:00
|
|
|
Install dependencies:
|
|
|
|
|
|
2025-05-05 12:31:00 +02:00
|
|
|
Debian / Ubuntu:
|
2025-03-26 12:11:51 +01:00
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt install dkms
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Fedora:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo dnf install dkms kernel-headers
|
|
|
|
|
```
|
|
|
|
|
|
2025-05-05 12:31:00 +02:00
|
|
|
### Download
|
|
|
|
|
|
|
|
|
|
Download the package for your distro from
|
|
|
|
|
https://github.com/Dasharo/dasharo-acpi-dkms/releases/latest
|
|
|
|
|
|
|
|
|
|
For Debian or Ubuntu, download the .deb package. For Fedora, download the .rpm
|
|
|
|
|
package.
|
|
|
|
|
|
|
|
|
|
### Install
|
|
|
|
|
|
|
|
|
|
From the location you downloaded the package to in the previous step, install
|
|
|
|
|
the package:
|
2025-03-26 12:11:51 +01:00
|
|
|
|
|
|
|
|
Ubuntu:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt install ./dasharo-acpi-dkms_*.deb
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Fedora:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo dnf install ./dasharo-acpi-dkms-*.rpm
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
To load the driver, simply reboot, or run the command:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo modprobe dasharo-acpi
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
2025-05-05 12:31:00 +02:00
|
|
|
lm-sensors is one of many utilities that can make use of the driver. Install
|
|
|
|
|
lm-sensors:
|
2025-03-26 12:11:51 +01:00
|
|
|
|
|
|
|
|
Ubuntu:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt install lm-sensors
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Fedora:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo dnf install lm_sensors
|
|
|
|
|
```
|
|
|
|
|
|
2025-05-05 12:31:00 +02:00
|
|
|
Run `sensors` in a terminal and observe the output. Under the dasharo-acpi
|
|
|
|
|
sensor, you should now see your CPU and GPU (if present) temperatures, along
|
|
|
|
|
with speeds of their fans:
|
2025-03-26 12:11:51 +01:00
|
|
|
|
|
|
|
|
```
|
|
|
|
|
dasharo_acpi-acpi-0
|
|
|
|
|
Adapter: ACPI interface
|
|
|
|
|
CPU 0: 1005 RPM
|
|
|
|
|
GPU 0: 0 RPM
|
|
|
|
|
CPU Package 0: +56.0°C
|
|
|
|
|
GPU 0: +58.0°C
|
2024-03-12 11:09:48 +01:00
|
|
|
```
|