Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xxkfqz/cpugov

Simple perl script to manage CPU governors on Linux
https://github.com/xxkfqz/cpugov

cpu-governor perl

Last synced: about 2 months ago
JSON representation

Simple perl script to manage CPU governors on Linux

Awesome Lists containing this project

README

        

# cpugov

Simple perl script to manage CPU governors on *NIX systems

## Usage:

```bash
$ cpugov.pl # Print available governors
Available governors:
[0] conservative
[1] ondemand
[2] userspace
[3] powersave
[4] -> performance
[5] schedutil
$ cpugov.pl ondemand # Set governor by name
Switching from 'performance' to 'ondemand'
$ cpugov.pl 5 # Set governor by index
Switching from 'ondemand' to 'schedutil'
```