tuxclocker/README.md

106 lines
2.7 KiB
Markdown
Raw Normal View History

2019-01-22 07:35:17 -06:00
TuxClocker - A GUI overclocking utility for GNU/Linux
========================================
2019-05-25 08:30:59 -05:00
TuxClocker is a Qt5 overclocking tool. Currently supported cards are nvidia 600-series cards and newer, and AMD GPUs using the amdgpu driver until (not including) Radeon VII.
2019-01-22 07:35:17 -06:00
# Support
Matrix room: #tuxclocker:matrix.org [Direct Riot link](https://riot.im/app/#/room/#tuxclocker:matrix.org)
2019-01-26 13:45:59 -06:00
# Screenshots
2019-01-27 06:27:37 -06:00
![Imgur](https://i.imgur.com/fn8MoNj.png) ![Imgur](https://i.imgur.com/fuKIVW7.png) ![Imgur](https://i.imgur.com/cZCNzmN.png) ![Imgur](https://i.imgur.com/qkp2p7V.png) ![Imgur](https://i.imgur.com/TpmU8PD.png)
2019-01-26 13:45:59 -06:00
2019-01-22 07:35:17 -06:00
# Current features
- GPU monitoring (list and graph)
- Overclocking
- Overvolting
- Change power limit
2019-05-25 08:30:59 -05:00
- (AMD) pstate editing
2019-01-22 07:35:17 -06:00
- Fan mode selection
- Custom fan curve
2019-02-13 05:40:13 -06:00
- Provisional multi-GPU support
2019-01-22 07:35:17 -06:00
- Profiles
# Prerequisites
For AMD under Ubuntu:
sudo apt install --yes --quiet --quiet \
libqt5x11extras5-dev \
qtbase5-dev \
libqt5x11extras5 \
libdrm-amdgpu1 \
libdrm-common \
libdrm-dev
For Nvidia under Ubuntu:
sudo apt install --yes --quiet --quiet \
libqt5x11extras5-dev \
qtbase5-dev \
libqt5x11extras5 \
libdrm-amdgpu1 \
libdrm-common \
libdrm-dev \
nvidia-utils-440-server \
nvidia-settings \
libxnvctrl-dev
2019-05-25 08:30:59 -05:00
# Requirements (nvidia)
2019-05-25 08:30:59 -05:00
- [Coolbits](https://wiki.archlinux.org/index.php/NVIDIA/Tips_and_tricks#Enabling_overclocking) set to the value you want (31 for all functionality)
2019-01-22 07:35:17 -06:00
2019-05-25 08:30:59 -05:00
# Installation (nvidia)
2019-01-22 07:35:17 -06:00
### Compilation
2019-05-25 08:30:59 -05:00
NOTE: on some systems, qmake is linked to qt4-qmake. If qmake fails, run qmake-qt5 in place of qmake
2019-01-22 07:35:17 -06:00
```
git clone https://github.com/Lurkki14/tuxclocker
cd tuxclocker
qmake rojekti.pro
make
make install (installs into /opt/tuxclocker/bin)
```
2019-02-21 07:55:59 -06:00
### Arch Linux
#### AUR package
[https://aur.archlinux.org/packages/tuxclocker/](https://aur.archlinux.org/packages/tuxclocker/)
2019-01-22 07:35:17 -06:00
2019-05-25 08:30:59 -05:00
# Requirements (AMD)
- NOTE: headers are usually included in a package named \*-dev, if they are separate
- libdrm and headers
- amdgpu.ppfeaturemask boot paramter set to the value you want. To view the current value, run
```
printf "0x%08x\n" $(cat /sys/module/amdgpu/parameters/ppfeaturemask)
```
Example grub line (usually /etc/default/grub):
2019-01-27 06:27:37 -06:00
2019-05-25 08:30:59 -05:00
```
GRUB_CMDLINE_LINUX_DEFAULT="quiet radeon.si_support=0 amdgpu.si_support=1 amdgpu.dpm=1 amdgpu.ppfeaturemask=0xffffffff"
```
After editing, update grub, usually
2019-05-25 08:30:59 -05:00
```
sudo update-grub
```
2019-01-27 06:27:37 -06:00
2019-05-25 08:30:59 -05:00
# Installation (AMD)
### Compilation
NOTE: on some, systems, qmake is linked to qt4-qmake. If qmake fails, run qmake-qt5 in place of qmake
```
git clone https://github.com/Lurkki14/tuxclocker
cd tuxclocker
git checkout pstatetest
qmake rojekti.pro
make
make install (installs into /opt/tuxclocker/bin)
```
NOTE: to use fancurves on the AMD version, you need to run as root.