Compare commits

...

4 Commits

Author SHA1 Message Date
tteckster 5b9709c934
Update microcode.sh
tweak
2023-05-08 14:24:29 -04:00
tteckster 62bc660058
Update microcode.sh 2023-05-08 13:37:49 -04:00
tteckster 36a0528b99
Update microcode.sh
set AMD to verbose
2023-05-08 13:37:09 -04:00
tteckster 22a2061702
Update microcode.sh
fix for AMD
2023-05-08 13:28:06 -04:00
1 changed files with 2 additions and 6 deletions

View File

@ -54,7 +54,7 @@ intel() {
msg_info "Installing iucode-tool: a tool for updating Intel processor microcode"
apt-get install -y iucode-tool &>/dev/null
msg_ok "Installed iucode-tool"
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.20230214.1_amd64.deb
msg_ok "Downloaded the latest Intel Processor Microcode Package"
@ -71,16 +71,12 @@ intel() {
}
amd() {
msg_info "Installing amd-ucode: a tool for updating AMD processor microcode"
apt-get install -y amd64-microcode &>/dev/null
msg_ok "Installed amd-ucode"
msg_info "Downloading the latest AMD Processor Microcode Package for Linux"
wget -q http://ftp.debian.org/debian/pool/non-free-firmware/a/amd64-microcode/amd64-microcode_3.20230414.1_amd64.deb
msg_ok "Downloaded the latest AMD Processor Microcode Package"
msg_info "Installing the AMD Processor Microcode (Patience)"
dpkg -i amd64-microcode_3.20230414.1_amd64.deb &>/dev/null
dpkg -i amd64-microcode_3.20230414.1_amd64.deb
msg_ok "Installed the AMD Processor Microcode"
msg_info "Cleaning up"