Compare commits

..

2 Commits

Author SHA1 Message Date
tteckster d226b7a2f3
Update CHANGELOG.md 2023-08-10 17:38:26 -04:00
tteckster e6ce819428
Update microcode.sh
update AMD microcode
2023-08-10 17:33:46 -04:00
2 changed files with 10 additions and 3 deletions

View File

@ -4,6 +4,13 @@
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment. - All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
## 2023-08-10
### Changed
- **Proxmox VE Processor Microcode**
- AMD microcode-20230808 Release
## 2023-08-09 ## 2023-08-09
### Changed ### Changed

View File

@ -86,15 +86,15 @@ intel() {
amd() { amd() {
msg_info "Downloading the latest AMD Processor Microcode Package for Linux" 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.20230719.1_amd64.deb wget -q http://ftp.debian.org/debian/pool/non-free-firmware/a/amd64-microcode/amd64-microcode_3.20230808.1.1_amd64.deb
msg_ok "Downloaded the latest AMD Processor Microcode Package" msg_ok "Downloaded the latest AMD Processor Microcode Package"
msg_info "Installing the AMD Processor Microcode (Patience)" msg_info "Installing the AMD Processor Microcode (Patience)"
dpkg -i amd64-microcode_3.20230719.1_amd64.deb &>/dev/null dpkg -i amd64-microcode_3.20230808.1.1_amd64.deb &>/dev/null
msg_ok "Installed the AMD Processor Microcode" msg_ok "Installed the AMD Processor Microcode"
msg_info "Cleaning up" msg_info "Cleaning up"
rm amd64-microcode_3.20230719.1_amd64.deb rm amd64-microcode_3.20230808.1.1_amd64.deb
msg_ok "Cleaned" msg_ok "Cleaned"
echo -e "\n To apply the changes, the system will need to be rebooted.\n" echo -e "\n To apply the changes, the system will need to be rebooted.\n"