Skip to content

Instantly share code, notes, and snippets.

@jkullick
Last active January 9, 2017 09:08
Show Gist options
  • Save jkullick/a87fd2f6bf61ae9e3e904ba1c9b0ea47 to your computer and use it in GitHub Desktop.
Save jkullick/a87fd2f6bf61ae9e3e904ba1c9b0ea47 to your computer and use it in GitHub Desktop.
Activate Hot-Added Memory on VMWare Linux Guest
for mem in ls /sys/devices/system/memory/memory*/state; 
  do echo "online" > $mem; 
done 2>/dev/null;

Source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment