Page 1 of 1

Debian - WiFi and CPU-Temperature

Posted: Sun Oct 30, 2016 8:07 pm
by Nuke
Hi,

i'm running two NanoPiM3 with Debian. Is there a way to disable the wifi-module in the config-file on the boot-partition? How can i get the cpu-temperature on the shell?

Best regards.

Re: Debian - WiFi and CPU-Temperature

Posted: Mon Oct 31, 2016 2:21 am
by lawrence
view cpu-temperature:
# cat /sys/class/hwmon/hwmon0/device/temp_label

if you want to disable wifi, you just need to edit /etc/network/interfaces and add a non-auto entry for your weak network adapter like so (where wlan0 is your weak adapter):
Code:

auto lo
iface lo inet loopback

iface wlan0 inet manual

Re: Debian - WiFi and CPU-Temperature

Posted: Mon Oct 31, 2016 8:06 am
by Nuke
Thank you!