Skip to content

Instantly share code, notes, and snippets.

@vsoch
Last active December 3, 2023 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vsoch/467467cacf32bdc2303af5e3534311b8 to your computer and use it in GitHub Desktop.
Save vsoch/467467cacf32bdc2303af5e3534311b8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
for cpunum in $(cat /sys/devices/system/cpu/cpu*/topology/thread_siblings_list | cut -s -d, -f2- | tr ',' '\n' | sort -un)
do
echo 0 > /sys/devices/system/cpu/cpu$cpunum/online
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment