Last active
May 27, 2023 03:43
-
-
Save kriipke/94b11d9c01c02c6622dd432931ea8295 to your computer and use it in GitHub Desktop.
some raw commands to send via ipmitool to slow the fan speed on 11th gen poweredge servers (R410 notably) down to around 1/4 of their original speed to shut them up :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Sets fan speeds on boot | |
[Service] | |
Type=oneshot | |
ExecStartPre=ipmitool raw 0x30 0x30 0x01 0x00 | |
ExecStart=ipmitool raw 0x30 0x30 0x02 0xff 0x14 | |
[Install] | |
WantedBy=multi-user.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Same as the systemd service above, but | |
# in script form, enjoy! | |
# enables manual fan speed control | |
ipmitool raw 0x30 0x30 0x01 0x00 | |
# sets fan speed - tweak the last set of hex | |
# chars to vary the rotation speed if you need to | |
ipmitool raw 0x30 0x30 0x02 0xff 0x14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment