Knowledgebase

Your kernel does not support throttling detection. You should update the kernel

The message "Your kernel does not support throttling detection. You should update the kernel" typically indicates that your current Linux kernel does not have the necessary features or modules to detect and handle CPU throttling.

To address this, you have a few options:

  1. Update the Kernel:

    • Updating the kernel to a newer version may provide the necessary support for throttling detection. Depending on your Linux distribution, the exact process for updating the kernel may vary.
  2. Install and Configure thermald:

    • thermald is a Linux daemon used for thermal management. It monitors temperature and takes action to prevent the system from overheating. Installing and configuring thermald might help address throttling issues.

    • For Ubuntu/Debian:

      bash

 

  • sudo apt-get install thermald sudo systemctl enable thermald sudo systemctl start thermald
  • For CentOS/RHEL:

    bash

 

    • sudo yum install thermald sudo systemctl enable thermald sudo systemctl start thermald
  1. Check BIOS Settings:

    • Ensure that your BIOS settings are configured to allow proper thermal management. Some BIOS settings can affect how the CPU handles heat and performance.
  2. Monitor Temperature and Performance:

    • Use tools like sensors or lm-sensors to monitor the temperature of your CPU. Additionally, you can use tools like htop or top to monitor CPU performance.
  3. Consult System Documentation or Forums:

    • Check your system's documentation or forums related to your specific hardware and Linux distribution. There might be specific recommendations or known issues related to thermal management.
  4. Contact Hardware Manufacturer or Support:

    • If you're experiencing throttling on a specific hardware model, reaching out to the manufacturer or support channels might yield specific recommendations or solutions.

Always be cautious when updating the kernel, especially on production systems. Make sure to back up your data and configuration files before making any significant changes. Additionally, consider testing any changes in a non-production environment first.

 
  • 0 Users Found This Useful
Was this answer helpful?