Initial commit

This commit is contained in:
Andreas Abel
2019-02-20 14:57:43 +01:00
parent 6caf859eab
commit a01b9742c7
32 changed files with 4813 additions and 1 deletions

10
enable-HT.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
for cpu in /sys/devices/system/cpu/cpu[1-9]*; do
echo 1 > "$cpu/online"
done