Compare commits

...

2 Commits

Author SHA1 Message Date
tteckster 0d6aac1201
Update microcode.sh
Code refactoring
2023-08-10 06:51:20 -04:00
tteckster a4c45beffb
Update microcode.sh
check for Intel iucode-tool
2023-08-10 06:11:06 -04:00
1 changed files with 26 additions and 12 deletions

View File

@ -4,15 +4,7 @@
# License: MIT # License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE # https://github.com/tteck/Proxmox/raw/main/LICENSE
clear function header_info {
while true; do
read -p "Install the latest Processor Microcode (y/n)?" yn
case $yn in
[Yy]*) break ;;
[Nn]*) exit ;;
*) echo "Please answer yes or no." ;;
esac
done
clear clear
cat <<"EOF" cat <<"EOF"
____ __ ____ __ ____ __ ____ __
@ -22,6 +14,7 @@ cat <<"EOF"
/_/ /_/ \____/\___/\___/____/____/\____/_/ /_/ /_/_/\___/_/ \____/\___/\____/\__,_/\___/ /_/ /_/ \____/\___/\___/____/____/\____/_/ /_/ /_/_/\___/_/ \____/\___/\____/\__,_/\___/
EOF EOF
}
RD=$(echo "\033[01;31m") RD=$(echo "\033[01;31m")
YW=$(echo "\033[33m") YW=$(echo "\033[33m")
@ -50,10 +43,31 @@ msg_error() {
echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}" echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}"
} }
header_info
current_microcode=$(dmesg | grep -o 'microcode updated early to revision [^,]*, date = [0-9\-]*')
while true; do
if [ -z "${current_microcode}" ]; then
msg_error "Microcode update information not found."
else
msg_ok "Current ${current_microcode}"
fi
read -p "Install the latest Processor Microcode (y/n)?" yn
case $yn in
[Yy]*) break ;;
[Nn]*) exit ;;
*) echo "Please answer yes or no." ;;
esac
done
header_info
intel() { intel() {
if ! apt -qq list iucode-tool >/dev/null 2>&1; then
msg_info "Installing iucode-tool: a tool for updating Intel processor microcode" msg_info "Installing iucode-tool: a tool for updating Intel processor microcode"
apt-get install -y iucode-tool &>/dev/null apt-get install -y iucode-tool &>/dev/null
msg_ok "Installed iucode-tool" msg_ok "Installed iucode-tool"
else
msg_ok "Intel iucode-tool is already installed"
fi
msg_info "Downloading the latest Intel Processor Microcode Package for Linux" msg_info "Downloading the latest Intel Processor Microcode Package for Linux"
wget -q http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/intel-microcode_3.20230808.1_amd64.deb wget -q http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/intel-microcode_3.20230808.1_amd64.deb