Skip to content

Commit

Permalink
[Doc] README section for AlmaLinux
Browse files Browse the repository at this point in the history
  • Loading branch information
cyring committed May 14, 2024
1 parent a4dbfc9 commit b93a6c3
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,42 @@ apt install dkms
apt list git build-essential gawk fakeroot linux-headers*
```

## Red Hat, CentOS, AlmaLinux
## Red Hat, CentOS
* Development packages prerequisites.
```sh
yum install kernel-devel
yum group install "Development Tools"
```

## AlmaLinux
```sh
## as root, install kernel development package and dependencies
dnf --assumeyes install kernel-devel gcc make git bc
```
```sh
## as a User, build CoreFreq
cd CoreFreq
make -j
```
```sh
## as root, install the binaries
make install
## and start Driver and Daemon
modprobe corefreqk
corefreqd
```
```sh
## as a User, start the Client
corefreq-cli
```
```sh
## Terminate Client, Daemon and unload Driver as root
modprobe -r corefreqk
## Proceed to uninstallation as root
cd CoreFreq
make uninstall
```

## openSUSE
* Packages
1. [CoreFreq](https://software.opensuse.org/package/CoreFreq) official release
Expand Down

0 comments on commit b93a6c3

Please sign in to comment.