Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/xxkfqz/cpugov
- Owner: xxkfqz
- Created: 2024-07-15T12:20:10.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-09-17T14:01:16.000Z (4 months ago)
- Last Synced: 2024-10-13T11:22:41.539Z (3 months ago)
- Topics: cpu-governor, perl
- Language: Perl
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
```