mirror of https://github.com/tteck/Proxmox.git
Compare commits
4 Commits
51ee45e88f
...
c62e3f7ed4
Author | SHA1 | Date |
---|---|---|
|
c62e3f7ed4 | |
|
d7b762398a | |
|
bfa0728054 | |
|
ce1e4b7d29 |
|
@ -8,6 +8,8 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
- **Proxmox VE LXC Updater**
|
||||
- Add information about the boot disk, which provides an easy way to determine if you need to expand the disk.
|
||||
- **Proxmox VE Processor Microcode**
|
||||
- [Intel microcode-20230512 Release](https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20230512)
|
||||
|
||||
## 2023-05-13
|
||||
|
||||
|
|
|
@ -56,15 +56,15 @@ intel() {
|
|||
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
|
||||
wget -q http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/intel-microcode_3.20230512.1_amd64.deb
|
||||
msg_ok "Downloaded the latest Intel Processor Microcode Package"
|
||||
|
||||
msg_info "Installing the Intel Processor Microcode (Patience)"
|
||||
dpkg -i intel-microcode_3.20230214.1_amd64.deb &>/dev/null
|
||||
dpkg -i intel-microcode_3.20230512.1_amd64.deb &>/dev/null
|
||||
msg_ok "Installed the Intel Processor Microcode"
|
||||
|
||||
msg_info "Cleaning up"
|
||||
rm intel-microcode_3.20230214.1_amd64.deb
|
||||
rm intel-microcode_3.20230512.1_amd64.deb
|
||||
msg_ok "Cleaned"
|
||||
|
||||
echo -e "\n To apply the changes, the system will need to be rebooted.\n"
|
||||
|
|
Loading…
Reference in New Issue