diff --git a/CHANGELOG.md b/CHANGELOG.md
index 94be3e9..424601d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -77,6 +77,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment |
| -------------- | -------------- | -------- |
+| 5.6.5 | 2021-03-15 | `cpuTemperature()` fix (linux) |
| 5.6.4 | 2021-03-15 | `sanitizeShellString()` and other security improvements |
| 5.6.3 | 2021-03-14 | `sanitizeShellString()` improvement |
| 5.6.2 | 2021-03-10 | `networkInterfaces()` `cpu()` improvement (win) |
diff --git a/docs/history.html b/docs/history.html
index 3e66d56..79a20ab 100644
--- a/docs/history.html
+++ b/docs/history.html
@@ -56,6 +56,11 @@
+
+ | 5.6.5 |
+ 2021-03-15 |
+ cpuTemperature() fix linux |
+
| 5.6.4 |
2021-03-15 |
diff --git a/docs/index.html b/docs/index.html
index 6262226..f87088f 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -170,7 +170,7 @@
systeminformation
- New Version: 5.6.4
+ New Version: 5.6.5
diff --git a/lib/cpu.js b/lib/cpu.js
index 6476301..8ef1f02 100644
--- a/lib/cpu.js
+++ b/lib/cpu.js
@@ -937,7 +937,7 @@ function cpuTemperature(callback) {
if (_linux) {
// CPU Chipset, Socket
try {
- const cmd = 'cat /sys/class/thermal/thermal_zone*/type; echo "-----"; cat /sys/class/thermal/thermal_zone*/temp;';
+ const cmd = 'cat /sys/class/thermal/thermal_zone*/type 2>/dev/null; echo "-----"; cat /sys/class/thermal/thermal_zone*/temp 2>/dev/null;';
const parts = execSync(cmd).toString().split('-----\n');
if (parts.length === 2) {
const lines = parts[0].split('\n');