Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feralducka/silence-hp-dl380p-g8
Script for silencing the fans of HPe ProLiant DL380p Gen 8 servers
https://github.com/feralducka/silence-hp-dl380p-g8
fan hp hpe quiet server
Last synced: 4 days ago
JSON representation
Script for silencing the fans of HPe ProLiant DL380p Gen 8 servers
- Host: GitHub
- URL: https://github.com/feralducka/silence-hp-dl380p-g8
- Owner: FeralDucka
- Created: 2023-08-01T20:48:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-07T20:47:42.000Z (over 1 year ago)
- Last Synced: 2024-10-19T08:26:02.930Z (about 1 month ago)
- Topics: fan, hp, hpe, quiet, server
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silence-HP-DL380p-G8
Simple script for silencing, the server, lowering the fan speed.
After downloading the script, remeber to change the variables at the top of the script.
**Custom iLO 4 is required, check: https://github.com/kendallgoto/ilo4_unlock**
## Packets required for communication with iLO 4:
``` bash
sudo apt install -y ssh
sudo apt install -y sshpass
```## To manually connect with iLO use:
``` bash
ssh -oHostKeyAlgorithms=ssh-rsa -oKexAlgorithms=+diffie-hellman-group14-sha1 USER@iLO_IP
```## To manually stress the server use:
``` bash
sudo apt install -y stress
time stress --cpu $(nproc) # Only CPU
time stress --cpu $(nproc) --vm 4 --vm-bytes 8G # CPU + 32GB of RAM with 4 threads (8GB each)
time stress --cpu $(nproc) --vm 4 --vm-bytes 8G --io 4 # CPU + RAM + Storage with 4 threads
```## To manually log system temperatures use:
``` bash
sudo apt install -y lm-sensors
sensors > temp.log
```