Skip to content

Instantly share code, notes, and snippets.

@cryptozeny
Last active July 7, 2018 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cryptozeny/6c14d2dff1ac382106c76bb88c475e05 to your computer and use it in GitHub Desktop.
Save cryptozeny/6c14d2dff1ac382106c76bb88c475e05 to your computer and use it in GitHub Desktop.
amd ryzen sensors on ubuntu 16.04-4

spec

AMD Ryzen 1700 ASUS B350-PLUS 4.13.0-45-generic

dep

sudo apt-get install \
lm-sensors psensor build-essential bison flex

it87

# install it87 \
cd && \
git clone https://github.com/groeck/it87.git && \
cd it87 && \
make && sudo make install && \
sudo modprobe it87 && \
sensors && \
# make it permanent \
sudo touch /etc/modules-load.d/it87.conf && \
sudo touch /etc/modprobe.d/it87.conf && \
echo 'it87' | sudo tee --append /etc/modules-load.d/it87.conf && \
echo 'options it87' | sudo tee --append /etc/modprobe.d/it87.conf

reboot and check it :)

TODO

nct6775 not work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment