I couldn't find instructions that were 100% complete, so I put this together.
These instructions worked fine for me. Follow each step carefully.
DO NOT create the VM by choosing Quick Create in Hyper-V Manager. Follow these instructions exactly.
I couldn't find instructions that were 100% complete, so I put this together.
These instructions worked fine for me. Follow each step carefully.
DO NOT create the VM by choosing Quick Create in Hyper-V Manager. Follow these instructions exactly.
| from enum import Enum | |
| import time | |
| TEMP_PATH = "/sys/devices/virtual/thermal/thermal_zone0/temp" | |
| FAN_PATH = "/sys/class/thermal/cooling_device0/cur_state" | |
| class FanSpeed(Enum): | |
| OFF = 0 | |
| LOW = 1 |