Qt overclocking tool for GNU/Linux
Go to file
2019-09-19 14:08:29 +02:00
cog.png some cleanup 2019-01-18 15:48:34 +02:00
editprofile.cpp Add license 2019-02-13 12:16:18 +02:00
editprofile.h Add license 2019-02-13 12:16:18 +02:00
editprofile.ui Polishing for first release 2019-01-22 15:35:17 +02:00
gpuonfire.svg some cleanup 2019-01-18 15:48:34 +02:00
LICENSE Add license 2019-02-13 12:16:18 +02:00
main.cpp Add license 2019-02-13 12:16:18 +02:00
mainwindow.cpp Add message box with close/minimize options when quitting 2019-09-19 14:08:29 +02:00
mainwindow.h Minimize to tray if available 2019-08-30 11:50:35 +02:00
mainwindow.ui add icon 2019-01-31 14:25:44 +02:00
minusicon.png some cleanup 2019-01-18 15:48:34 +02:00
newprofile.cpp Add license 2019-02-13 12:16:18 +02:00
newprofile.h Add license 2019-02-13 12:16:18 +02:00
newprofile.ui Polishing for first release 2019-01-22 15:35:17 +02:00
nvidia.cpp Query driver for maximal performance mode 2019-06-01 13:43:20 +03:00
nvidia.h Query driver for maximal performance mode 2019-06-01 13:43:20 +03:00
nvml.h crash fix 2019-01-31 13:48:14 +02:00
plotwidget.cpp Add license 2019-02-13 12:16:18 +02:00
plotwidget.h Add license 2019-02-13 12:16:18 +02:00
plusicon.png some cleanup 2019-01-18 15:48:34 +02:00
qcustomplot.cpp fwafawf 2018-12-13 21:31:36 +02:00
qcustomplot.h fwafawf 2018-12-13 21:31:36 +02:00
README.md update readme 2019-05-25 16:30:59 +03:00
resources.qrc Polishing for first release 2019-01-22 15:35:17 +02:00
rojekti.pro Add license 2019-02-13 12:16:18 +02:00

TuxClocker - A GUI overclocking utility for GNU/Linux

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.

Screenshots

Imgur Imgur Imgur Imgur Imgur

Current features

  • GPU monitoring (list and graph)
  • Overclocking
  • Overvolting
  • Change power limit
  • (AMD) pstate editing
  • Fan mode selection
  • Custom fan curve
  • Provisional multi-GPU support
  • Profiles

Requirements (nvidia)

  • NOTE: headers are usually included in a package named *-dev, if they are separate
  • nvidia-smi
  • nvidia-settings
  • libxnvctrl and headers (if not included in nvidia-settings)
  • qt5base, x11extras and their headers
  • Coolbits set to the value you want (31 for all functionality)

Installation (nvidia)

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
qmake rojekti.pro
make
make install (installs into /opt/tuxclocker/bin)

Arch Linux

AUR package

https://aur.archlinux.org/packages/tuxclocker/

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):	
GRUB_CMDLINE_LINUX_DEFAULT="quiet radeon.si_support=0 amdgpu.si_support=1 amdgpu.dpm=1 amdgpu.ppfeaturemask=0xffffffff"
After editing, update grub, usually 
sudo update-grub

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.