Last active
September 27, 2017 09:44
-
-
Save jshin49/cb5740486335e2eec117714bf0cc9684 to your computer and use it in GitHub Desktop.
bash commands to control nvidia gpu fan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias upgrade="sudo -- sh -c 'apt-get update; apt-get upgrade -y; apt-get dist-upgrade -y; apt-get autoremove -y; apt-get autoclean -y'" | |
alias fastgpu="sudo env DISPLAY=:0 nvidia-settings -a GPUFanControlState=1 -a GPUTargetFanSpeed=100" | |
alias normalgpu="sudo env DISPLAY=:0 nvidia-settings -a GPUFanControlState=0" | |
alias mediumgpu="sudo env DISPLAY=:0 nvidia-settings -a GPUFanControlState=1 -a GPUTargetFanSpeed=60" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment