Category Archives: Uncategorized

Controlling fan speed for Dell PowerEdge servers

In my home lab I’m running a Dell PowerEdge T630.

While the T630 is a very powerful machine for a home lab, the fans are just as powerful. Personally I prefer quiet – and I’m not concerned if CPU throttling is occuring.

Today I wrote a script to make it easier to control the fan speed with ipmitool

In order to use this script with your PowerEdge – you will need to enable IPMI in iDRAC

#!/bin/bash

# Function to display usage
usage() {
    echo "Usage: $0 -h host [-l username] [-p password] [-p percentage]"
    echo "  -h host: IP address or hostname of the iDRAC (mandatory)"
    echo "  -l username: Username for IPMI authentication"
    echo "  -p password: Password for IPMI authentication"
    echo "  -p percentage: Percentage value (0-100) to set fan speed (default: 0)"
    exit 1
}

# Check if ipmitool is installed
if ! command -v ipmitool &> /dev/null
then
    echo "Error: ipmitool is not installed. Please install ipmitool to proceed."
    exit 1
fi

# Initialize variables
username=""
password=""
host=""
percentage="0"

# Parse command-line options
while getopts "h:l:p:" opt
do
    case $opt in
        h) host="$OPTARG" ;;
        l) username="$OPTARG" ;;
        p) 
            if [[ "$OPTARG" =~ ^[0-9]+$ && "$OPTARG" -ge 0 && "$OPTARG" -le 100 ]]
            then
                percentage="$OPTARG"
            else
                echo "Error: Percentage value must be an integer between 0 and 100."
                usage
            fi
            ;;
        \?) usage ;;
    esac
done

# Check if mandatory -h option is provided
if [[ -z ${host} ]]
then
    echo "Error: -h (host) option is mandatory."
    usage
fi

# Prompt for username if not provided via getopts
if [[ -z ${username} ]]
then
    echo -n "Enter username: "
    read username
fi

# Prompt for password if not provided via getopts
if [[ -z ${password} ]]
then
    echo -n "Enter password: "
    read -s password
fi

# Disable automatic fan speed control
ipmitool -I lanplus -H "${host}" -U "${username}" -P "${password}" raw 0x30 0x30 0x01 0x00

# Set fan speed based on percentage
if [[ -n ${percentage} ]]
then
    value=$(printf "%x\n" $((percentage * 64 / 100)))
    ipmitool -I lanplus -H "${host}" -U "${username}" -P "${password}" raw 0x30 0x30 0x02 0xff 0x${value}
fi

Migrating VMWare ESXi 7 virtual machines with EFI booting, to Proxmox 8.2 from VMDK files

Quick guide on how to migrate virtual machines from VMWare ESXi 7 to Proxmox 8.2. I’ve been using VMWare ESXi in my home lab and wanted to migrate this machine to Proxmox 8.2. The only mechanism available for this kind of migration was offline, as I did not have two physical machines to run both VMWare ESXi and Proxmox concurrently.

  1. Make a backup of the VMFS filesystem that contains your virtual machines
    Its an extra hurdle to read your VMFS filesystem within Linux, so I opted to use SCP to copy to my Windows machine

    Don’t skimp. Backup every file in this location
  2. Make sure you have an idea of the hardware configurations of each virtual machine as this process will require you to manually configure the hardware
  3. After installing Proxmox, copy your backup to the Proxmox filesystem
    In my case I used SCP to upload them from my Windows machine
  4. Create a virtual machine for your target vm to migrate
    Ensure you configure the hardware to the requirements
    Do not add a hard disk, delete the SCSI disk created by the wizard
    However – ensure you configure an EFI disk and disable Pre-Enrolled Keys (does anyone even use Secure Boot?)
  5. Exclude net as a boot option from the Options tab, for the virtual machine, in the Proxmox web UIThis image has an empty alt attribute; its file name is image-1.png

    This step seemed critial and undocumented. If I did not do this step, I was unable to boot the virtual machine
  6. SSH to Proxmox, identify the VMID with qm list and identify the location of your SCP
  7. Migrate the disk image with qm importdisk with the syntax
    qm importdisk VMID VMDK-FILE STORAGE-NAME

    Example:
    qm importdisk 200 /nvme/vmware/kube-master/kube-master.vmdk nvme
  8. Boot the virtual machine and open the console
  9. When you are dropped to the EFI shell, enter the command exit which should take you to the BIOS
  10. Follow the guide to add the path to your EFI boot file – https://pve.proxmox.com/wiki/OVMF/UEFI_Boot_Entries
  11. Reset the virtual machine – and it should boot just the same as it did on VMWare
    You may need to reconfigure the network and other hardware drivers and devices