Last active
April 24, 2024 09:32
-
-
Save farrokhi/4c781c643fd3cc5ec947991dac5c31df to your computer and use it in GitHub Desktop.
Turn all CPU and RAM online in Linux under VMWare
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/bash | |
# Based on script by William Lam - http://engineering.ucsb.edu/~duonglt/vmware/ | |
# Bring CPUs online | |
for CPU_DIR in /sys/devices/system/cpu/cpu[0-9]* | |
do | |
CPU=${CPU_DIR##*/} | |
echo "Found cpu: '${CPU_DIR}' ..." | |
CPU_STATE_FILE="${CPU_DIR}/online" | |
if [ -f "${CPU_STATE_FILE}" ]; then | |
if grep -qx 1 "${CPU_STATE_FILE}"; then | |
echo -e "\t${CPU} already online" | |
else | |
echo -e "\t${CPU} is new cpu, bringing online ..." | |
echo 1 > "${CPU_STATE_FILE}" | |
fi | |
else | |
echo -e "\t${CPU} already configured prior to hot-add" | |
fi | |
done | |
# Bring all new Memory online | |
for RAM in $(grep line /sys/devices/system/memory/*/state) | |
do | |
echo "Found ram: ${RAM} ..." | |
if [[ "${RAM}" == *":offline" ]]; then | |
echo "Bringing online" | |
echo $RAM | sed "s/:offline$//"|sed "s/^/echo online > /"|source /dev/stdin | |
else | |
echo "Already online" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment