Hdd Fan Control For Windows

  
Latest version
  1. Hdd Windows 10
  2. Hdd Fan Control For Windows 8.1

HDD Fan control. HDD Fan control is a command line tool to dynamically control fan speed according to hard drive temperature on Linux. This has 3 benefits: it allows maintaining your hard drives in the ideal temperature range to have maximum longevity and avoid overheating; Because fans will slow down or stop when not needed. IMac HDD Fan Control does not require Apple's temperature sensor or cable to obtain the drives temperature as it uses the S.M.A.R.T (Self-Monitoring, Analysis and Reporting Technology) protocol built into all drives, this means you no longer need the temperature sensor or cable for the fan to operate correctly.

Released:

Control system fan speed by monitoring hard drive temperature

Project description

HDD Fan control is a command line tool to dynamically control fan speed according to hard drive temperature on Linux.

This has 3 benefits:

  • it allows maintaining your hard drives in the ideal temperature range to have maximum longevity and avoid overheating

Because fans will slow down or stop when not needed:

  • it minimizes noise generated by the fans
  • it also minimizes power consumption at the same time

When is this useful?

HDD Fan control is useful when you have one or several hard drives with one or several fans close to them, and do not want to let the motherboard control the fan speed, because it does so either statically, or using a temperature sensor unrelated to the real drive temperature (either on the CPU or on some other place on the motherboard).

The ideal use case is for a NAS with several hard drives, a low power CPU (ie. ARM or Intel Atom) with passive cooling (no fans), and a chassis with fans close to the hard drive. It that case the CPU will generate less heat than the hard drives and it makes sense to control fan speed according to the main heat source.

Features

  • Can run in daemon mode
  • Can control several fans and/or several drives with a single invocation
  • Can automatically spin down drives after a customizable period of inactivity
  • Can adapt to different fan characteristics
  • Can be set to stop fans or run them at full speed at customizable temperatures
  • Can be configured to never set the fans below a certain speed (useful if the fans controlled by HDD Fan control are the only ones available in the chassis)
  • Can also optionally monitor CPU temperature, and control fan speed accordingly

Prerequisites

  • A Linux distribution
  • A least one SATA hard drive, that supports:
    • Temperature querying
    • Power state querying
  • A motherboard which:
    • exposes to the OS a PWM to control fan speed
    • exposes to the OS a sensor to query fan speed

Most motherboards and SATA drives fit these requirements.

Installation

HDD Fan control requires Python >= 3.4.

Distribution packages

Some Linux distributions have a hddfancontrol package available in their repository:

  • Arch Linux (AUR): hddfancontrol
  • Fedora: hddfancontrol (thanks to TC01)

From PyPI (with PIP)

  1. If you don't already have it, install pip for Python 3
  2. Install HDD Fan control: pip3 install hddfancontrol
  3. Install hdparm and hddtemp.On Ubuntu and other Debian derivatives: sudo apt-get install hdparm hddtemp.

From source

  1. If you don't already have it, install setuptools for Python 3
  2. Clone this repository: git clone https://github.com/desbma/hddfancontrol
  3. Install HDD Fan control: python3 setup.py install
  4. Install hdparm and hddtemp.On Ubuntu and other Debian derivatives: sudo apt-get install hdparm hddtemp.

To query fan characteristics, you may also need pwmconfig. On Ubuntu and other Debian derivatives, it is part of the fancontrol package, that you can install with sudo apt-get install fancontrol. HDD fancontrol and fancontrol are unrelated. The fancontrol daemon is not needed for HDD fan control to operate. If you use both fancontrol and HDD fancontrol, be careful not to make them control the same fans.

Configuration

A word of caution

The default parameters will run fans at 100% speed at temperatures > 50°C, and run them a 20% speed if < 30°C, which corresponds to the usual recommended drive operating temperature. If you are sure that there are no other components in your system that generate significant heat, if you have other fans to cool down youy system, or if you have a case optimized for passive cooling, you can set minimum speed to 0%, which will stop the fans if temperature is below the minimum threshold.

Be aware that a misconfiguration of this tool can lead to a failure to cool down your system properly which can damage components or reduce their lifetime.

Before using HDD Fan control unmonitored for long period of time, I recommend keeping a minimum fan speed for security, and checking that the temperature of your system stays in reasonable range as expected.

Fan configuration

To get the value for the --pwm, --pwm-start-value and --pwm-stop-value parameters, you can either:

  • Use the -t or --test parameter, which will run some tests and detect the values at which the fans start and stop. However you need to have previously identified the PWM file (the --pwm parameter)
  • use the pwmconfig tool.

Drive auto spin down

SATA drives can be configured to automatically spin down after a certain period of inactivity, which saves power. If your drives are configured to do so, you may notice that they do not spin down when HDD Fan control is running.This is due to the fact that HDD Fan control will query temperature at fixed interval, which the drive will consider an activity and reset the spin down timeout.To fix that, you can either:

  • Use a value for the -i/--interval parameter higher than your SATA spin down time (not recommended unless your spin down time is very low, ie < 2 min). In that case you do not need to use hddfancontrol's --spin-down-time switch, because the builtin SATA drive timeout (that you can set for example with hdparm -S XXX command) should take effect.
  • Use the --spin-down-time parameter that will monitor drive activity and spin it down if inactive, independantly of the SATA feature (recommended)

Keep in mind that spinning down and up a drive repeatedly wears it prematurly, so unless you are in a power constrained environement (ie. laptop), do not set the spin down time too low.

Reading temperature while a drive is in low power state will make it spin up, so HDD Fan control will stop querying temperature in that case, and wait for the drive (which will be cooling down in low power state anyway) to spin up.

Some HGST (previously Hitachi) drives support a special way of querying temperature that does not spin up drives, which HDD Fan control will detect and use, however it still prevents them from spinning down, so the above instructions still apply.

Command line usage

Run hddfancontrol -h to get full command line reference.

As an example, the command line below will instruct HDD Fan control to:

  • monitor temperature of drives /dev/sda and /dev/sdb
  • control fan speed using PWM 2 and 3 in /sys/class/hwmon/hwmon1/device/
  • start both fans using PWM value 200
  • consider the fans will stop with PWM value 75
  • never run the fans below 10% of their maximum speed
  • check temperature at least every minute
  • automatically spin down drives if they are inactive for 2 hours (7200 seconds)
  • run in daemon mode
  • log what is going on to /var/log/hddfancontrol.log

hddfancontrol -d /dev/sda /dev/sdb -p /sys/class/hwmon/hwmon1/device/pwm2 /sys/class/hwmon/hwmon1/device/pwm3 --pwm-start-value 200 200 --pwm-stop-value 75 75 --min-fan-speed-prct 10 -i 60 --spin-down-time 7200 -b -l /var/log/hddfancontrol.log

Systemd service

A systemd service file is provided to control the daemon easily.If you installed hddfancontrol from a distribution package, you likely already have it installed, otherwise you can install it from the sources of this repository with:

Then you need to edit the HDDFANCONTROL_ARGS variable in /etc/conf.d/hddfancontrol to set the parameters (drives, temperature range..).

You can then start the daemon with sudo systemctl start hddfancontrol, see its status with sudo systemctl status hddfancontrol and enable automatic startup at boot time with sudo systemctl enable hddfancontrol.

License

Release historyRelease notifications RSS feed

1.3.1

1.3.0

1.2.10

1.2.9

1.2.8

1.2.7

1.2.6

1.2.5

1.2.4

1.2.3

1.2.2

1.2.1

1.2.0

1.1.3

1.1.2

1.1.1

1.0.3

1.0.2

1.0.1

1.0.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Files for hddfancontrol, version 1.3.1
Filename, sizeFile typePython versionUpload dateHashes
Filename, size hddfancontrol-1.3.1.tar.gz (28.7 kB) File type Source Python version None Upload dateHashes
Close

Hashes for hddfancontrol-1.3.1.tar.gz

Hashes for hddfancontrol-1.3.1.tar.gz
AlgorithmHash digest
SHA256d078ce78a14da8a58f61df66c6b18e652d4c2446d03b27adb96d19dddd4cb50e
MD5f75c4afea022772d1439273aad7741a8
BLAKE2-2561920c096074abe929a306a7832617b6750bab07dbf791b4e116331c34eca041e

The fan is very useful to keep your computer cool or reduce the irritating noise like a wind tunnel. And adjusting your system’s fan speeds help you to keep your system cool when it is working hard.

Changing computer fan speeds can be done manually as well as automatically. But there is nothing like the automatic PC fan controller or change computer fan speeds, this quietly ramps up the fans when the system gets hot and turn them down when the system performs as usual.

Well, you can also change or control fan speeds manually but the process is a bit tricky. You need to connect a manual fan controller to your Windows system with knobs and this will set fans to different speeds.

So, it is best to go for the automatic option via software to control the computer’s fan speed. The automatic PC fan speed controller software monitors temperatures from numerous sources and lets you modify the fan speeds on your machine when required.

There are numerous programs available that works for you to change the speed of your computer fan. But choosing the Right one is really difficult as there are varieties of options available in the market.

So, to help you out, in this article learn the best PC fan speed controller software compatible with your Windows system including the latest Windows 10 OS.

Learn the complete information from the features to price to make a better decision.

List of Best PC Fan Speed Control Software:

1: SpeedFan

SpeedFan comes on the top of the list as it is an extremely powerful tool. This fan controller program monitors voltages, temperatures and fan speeds in the system with the hardware monitors chip.

Well, this PC fan speed controller software comes with the various exciting features, here learn about them:

  • SpeedFan monitors PC temperature from different sources.
  • Access digital temperature sensors & adjust fan speeds, and hence reduce noise
  • It is able to access S.M.A.R.T. info and display hard disk performance.
  • Supports SCSI disks also
  • In the system tray, displays the system variables as charts & an indicator
  • It can manage various hardware monitors chips, hard disks, temperature readings, fan speed readings, voltage readings, PWMs and more.
  • Compatible with Windows 9x, ME, NT, 2000, 2003, XP, Vista, Windows 7, 2008, Windows 8, Windows 10 and Windows Server 2012.
  • Also compatible with Windows 64 bit also.

So, these are the amazing features of the SpeedFan software to change the fan speed on Windows PCs. You need to properly configure this program so that you are able to modify fan speeds based on system temperatures.

  • Free utility
  • Perfectly organized and clear interface
  • Send email notices
  • Highly customizable
  • Some functions not working
  • Not for the beginners.

Hence this is all about the SpeedFan software to control the fan speed on the computer, you can check out more details about the program and also download the software on the official site visit: SpeedFan Software Fan Controller.

2: Open Hardware Monitor

This is another powerful software to change fan speed Windows 10. It is a free open source program that not only controls fan speeds but also manages temperature sensors, voltages, load and clock speeds of a Windows PC/laptop.

This computer fan speed controller software is having many amazing features, here learn some of the best one.

  • Supports most of the latest hardware monitoring chips
  • Monitored values are displayed in the main window in a customizable desktop or in the system tray
  • Examine CPU temperature by reading the core temperature sensors of Intel and AMD processors
  • Display the ATI and Nvidia video cards sensors
  • Access S.M.A.R.T. hard drive temperature as well.
  • Run both on 32-bit and 64-bit
  • Compatible with Microsoft Windows XP / Vista / 7 / 8 / 8.1 / 10 and any x86 based Linux OS without installation.

These more alike the SpeedFan controller software and also a tough competitor. Now learn the Pros and cons of this fan control software.

  • Freeware program
  • Highly customizable
  • Organized and clear interface
  • Not for the average computer users
  • Minor bugs in the beta release

So, this is all about the Open Hardware Monitor, you can learn more details on its official website and also download it more there visit: Open Hardware Monitor

3: NoteBook FanControl

NoteBook FanControl software offers users the ability to control the computer’s fan speed. It is designed with the user’s friendly interface since after the installation it incorporates with the PC’s taskbar.

After launching it for the first time, you can see it comes with the straightforward interface so that new beginners can manage it.

In order to check whether this fan speed control Windows 10 tool supports your laptop or not simply visit the GitHub official page.

Check out the vital features included NoteBook FanControl software.

  • This PC fan controller software provides the real-time CPU temperature reading and the current fan speed.
  • Allow controlling the fan speeds though simple slider situated in the middle part of the main menu.
  • This software fan controller allows enabling and disabling the fan control service.
  • Allow automatically launching the program at system startup
  • Easy-to-use and compatible with Windows 7, 8 & Windows 10 as well.

So, these are some of the best functionality of this software to change or control fan speeds on a PC/laptop. Despite this, it also allows the users to select any one of numerous configuration as per your Notebook model and maker.

  • Free utility
  • Easy to use
  • Compatible with all laptop brands
  • Fixed and controlled integration

Well, the NoteBook FanControl is really worthy software to control the fan speed on laptop/PC, and in order to download it simply visit – Download NoteBook FanControl

4: HW Monitor

This is a free fan speeds monitor program for Windows. The HW Monitor has trusted hardware monitoring and PC fan speeds controller software.

So let dig out the best features of HW Monitor software to control fan

  • Monitor real-time speed of CPU fan and at least three cabinet fans
  • Also tracks the minimum and maximum recorded fan speed of both CPU and cabinet fans on its interface.
  • Monitor Motherboard voltage, processor’s voltage, processor temperature(both in Celsius and Fahrenheit), HDD & GPU temperature, System power usage in watts and others
  • Entire interface data can be saved in TXT file
  • Holds the common sensor chips, like ITE® IT87 series, most Winbond® ICs, & others.
  • Simple and easy and to use interface
  • Available for both 32 and 64-bit version
  • Compatible with other as well as the latest Windows 10 version

This CPU fan speed control software is also powerful and provides various features to change or control fan’s speed on computer as well as CPU. Now learn the pros and cons:

  • Freeware program
  • Precise & well-organized software
  • Small and speedy
  • Update data immediately
  • Easy to use
  • Supports new hardware
  • Offers no alerts, you have tosupervise things, yourself

Well, the HWMonitor fan control software is not a very attractive or interesting program but delivers the promised features.

You can learn more about it and also download it from the official website. Visit: HWMonitor Fan Control Software

5: ZOTAC FireStorm

This is another best freeware fan speed monitor software available for Windows OS. Well, this is not having lots of bells and whistles like other software but good enough to turn up fan speed on a computer.

Here learn some of the interesting ZOTAC FireStorm features:

  • Graphic card modification utility
  • Monitor and control fan speed of Nvidia Graphics card
  • Also help you control GPU clock speed, memory clock speed, shader clock speed, & VDDC values from its Clock section.
  • You can view immediate fan speed and modify fan speed easily
  • Provide dedicated Monitoring section to view real-time clock speed, temperature, fan speeds, etc.
  • Supports Windows 7/8 & 10

This laptop fan speed control Windows 10 software is a pretty good fan speed monitor. Also, have some drawbacks do what it promises.

  • Freeware software
  • Easy to understand and latest user interface
  • Display overclocking
  • Unable to monitor CPU fans
  • Disability to examine other companies graphics card except for Nvidia
  • Having minor bugs

Cadillacs and dinosaurs pc download. If you are willing to know more and download the ZOTAC FireStorm PC fan speed controller software than visit the official website: ZOTAC FireStorm

6: Argus Monitor

The Argus Monitor is reliable and light program to change or control fan speeds. This runs in the background and control fan speeds as well as monitors hard disk health.

Here learn the remarkable features of Argus Monitor software to change the fan speed on Windows PCs:

  • Control fan speed for mainboard and GPU based on entire available temperature sources
  • Monitor HDD temperature and the health status by checking the S.M.A.R.T. attributes
  • It offers a graphical display of hard drives temperature
  • Show the system’s fan speeds and allow controlling the speed smoothly.
  • Comes with a graphical display of GPU and CPU temperature
  • Inform you of the possibility of up to 70% before the hard drive fails so that users can save their essential data.
  • HDD and SSD benchmarks to process access time and transfer rates
  • Provide graphical display of core frequency and also allow checking the power management is working properly.
  • Supports all windows version 7, 8, 8.1 & 10 as well.

So these are the Argus Monitor PC fan controller software features, now learn the pros and cons of this software.

  • User-friendly interface
  • Allow monitoring the CPU and GPU temperature
  • Notifies the issues through emails
  • Unable to resize or customize the interface
  • Won’t work if the hardware components are not having a built-in temperature sensor
  • Only 30 days trial period

This program is only available for 30 days, and if looking to continue to use it, then requires buying the license key.

In order to know more information about the software and download the PC fan speeds controller program head to – Argus Monitor’s Official Website

7: HWiNFO

HWiNFO fan control is also a freeware software for Windows. This is a useful software that allows you to do various tasks rather than changing fan speeds on a computer and is pretty amazing.

Learn several best features of HWiNFO PC fan controller software:

  • It is very handy software that allows adjusting immediate CPU and cabinet fan speeds
  • With this, you can monitor several system components like CPU, motherboard, HDD temperature, CPU & GPU usage, CPU package power, GPU power, Core clock, RAM usage, and more
  • Also provide each information about system CPU and GPU code names, CPU turbo frequency, RAM type, BIOS information, Sensors info, & more.
  • Store a full report containing entire values of different parameters in a CSV file
  • Supports latest technologies & standards.
  • Works with both 32-bit and 64 bit Windows
  • Compatible with Windows Vista, Windows XP, Windows 7/8 & 10

So these are some of the features of the HWiNFO fan control software.

  • The customizable interface provides plenty of options
  • Is free utility
  • Offers several reports types, system monitoring using 3rd party add-ons or other tools.
  • Portable version is offered
  • Report generation provide blank details for deselected items
  • Limited and controlled integration
  • Offers limited details than the similar programs

If you are willing to learn more about and download the Windows 10 fan control software then visit the official website: HWiNFO Fan Control Software.

8: EasyTune 5

EasyTune 5 is Gigabyte software designed with easy to use interface. It allows the Windows-based users to fine-tune their system settings or enhance and manage the system, voltages and memory clocks in the Windows OS.

EasyTune5 by Gigabyte incorporates various amazing features here learn about them:

  • It comes with Smart-Fan control to manage fan speed of CPU and North-Bridge Chipset cooling fan
  • Offer monitoring system status to verify PC health
  • Provide overclocking to improve the system’s performance
  • EasyTune5 advanced mode allows you accessing entire overclocking parameter settings feature like configure the M.I.B. & C.I.A. features.
  • Allow the users to switch different modes by choosing between Easy Mode and Advanced Mode
  • Supports all Windows version

Well, this change computer fan speeds software is pretty good and free from flaws. If you are looking for how to change cpu fan speed without bios than you can go for this freeware software to control fan speedof your PC.

  • Freeware program
  • Allow monitoring system status
  • Control CPU fan speed & North-Bridge Chipset cooling fan
  • Easy to understand interface
  • Limited and strict integration

This allows configuring the CPU cooling fan speed as per different temperature at different RPM and suggests to set at full speed at 60oC.

In order to check more features and download the PC fan control software visit the official website: EasyTune 5 by Gigabyte

9: Corsair Link

Corsair Link PC fan controller software is also a free utility for Windows OS. This effective fan speed monitor comes with the gaming-oriented interface.

So let dig out some amazing features of the Corsair Link software fan controller.

  • Along with the fan speed monitor, it shows real-time CPU fan speed with CPU & GPU temperature, voltage, load, DRAM frequency.
  • It can also be used to configure warning notification of the CPU/GPU temperature and Fan speed fluctuation
  • Offers complete control over fans, compatible Corsair power supplies, lighting & Hydro Series liquid CPU coolers works both for cooling & performance
  • Also, come with a gaming-oriented interface
  • Supports the latest hardware and all Windows OS including Windows 10

So these are some of its characteristics, this change computer fan speeds software is worth using and help you prevent PC errors also.

  • Freeware utility
  • Automatically adjust cooling
  • Not very user-friendly
  • Compatibility issues with Windows 10

Looking to know more about the software and download it simply visit: Corsair Link official website

10: Thinkpad Fan Controller (TPFanControl)

Well, this PC fan speed controller software somehow able to manage a place at 10th position in the list. This free utility is working to reduce the fan noise in the notebooks.

So, let’s have a look at the best TPFanControl features, and know-how worthy it is:

  • Monitor CPU and GPU temperatures by running in the background
  • Adjust fan speeds for perfect cooling
  • Show the notification icon of the CPU and GPU temperature.
  • Control the system and CPU fan speeds by spinning up the fan only to keep the temperature low
  • Supports 32-bit & 64-bit Windows and all Windows operating system

Well, it is found that after installing the software is works dramatically.

  • Freeware utility
  • Display alerts in the notification tray
  • Control fan noise
  • Not for the beginners
  • Causes overheating
  • Not working with new models
  • Limited and strict interface

In order to know more about the comter fan controlling software visit the official website and learn how it works on your Window system: Download TPFanControl

Wrapping Things Up:

So, these are top 10 tools to control or change the fan’s speed of your Windows PC/laptop system.

I tried my best to list down the effective and freeware programs to control fan speeds compatible with Windows system. Learn the best features, pros, and cons based on the user’s review and get the best one that suits your needs.

Hope the given information in the article works for you and help you to solve how to control your PC’s fans queries.

Hdd

Hdd Windows 10

If you are having any issue, the suggestion that writes us in the comment section below.

Hardeep Kaur

Hdd Fan Control For Windows 8.1

Hardeep has always been a Windows lover ever since she got her hands on her first Windows XP PC. She has always been enthusiastic about technological stuff, especially Artificial Intelligence (AI) computing. Before joining PC Error Fix, she worked as a freelancer and worked on numerous technical projects.