mirror of
https://github.com/tteck/Proxmox.git
synced 2024-11-26 08:33:17 +01:00
Compare commits
4 Commits
5eaf413171
...
ad38e30579
Author | SHA1 | Date | |
---|---|---|---|
|
ad38e30579 | ||
|
bba46e5997 | ||
|
808b748617 | ||
|
5dbac97e7a |
@ -4,6 +4,15 @@
|
|||||||
|
|
||||||
- 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-06-12
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **Proxmox VE Edge Kernel**
|
||||||
|
- Removed, with the Proxmox opt-in kernels and the upcoming Proxmox Virtual Environment 8, edge kernels are no longer needed.
|
||||||
|
- **Proxmox VE Kernel Clean**
|
||||||
|
- Now compatible with PVE8.
|
||||||
|
|
||||||
## 2023-06-11
|
## 2023-06-11
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -17,3 +17,5 @@
|
|||||||
[Proxmox: Plex LXC with Alder Lake Transcoding](https://www.derekseaman.com/2023/04/proxmox-plex-lxc-with-alder-lake-transcoding.html)
|
[Proxmox: Plex LXC with Alder Lake Transcoding](https://www.derekseaman.com/2023/04/proxmox-plex-lxc-with-alder-lake-transcoding.html)
|
||||||
|
|
||||||
[How To Backup Home Assistant In Proxmox](https://smarthomescene.com/guides/how-to-backup-home-assistant-in-proxmox/)
|
[How To Backup Home Assistant In Proxmox](https://smarthomescene.com/guides/how-to-backup-home-assistant-in-proxmox/)
|
||||||
|
|
||||||
|
[Frigate VM on Proxmox with PCIe Coral TPU](https://www.derekseaman.com/2023/06/home-assistant-frigate-vm-on-proxmox-with-pcie-coral-tpu.html)
|
||||||
|
@ -63,7 +63,9 @@ function check_root() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
|
||||||
function other_kernel() {
|
function other_kernel() {
|
||||||
|
if [[ "${VERSION}" == "bullseye" ]]; then
|
||||||
if [[ "$current_kernel" == *"edge"* ]]; then
|
if [[ "$current_kernel" == *"edge"* ]]; then
|
||||||
echo -e "\n${CROSS} ${RD}ERROR:${CL} Proxmox ${BL}${current_kernel}${CL} Kernel Active"
|
echo -e "\n${CROSS} ${RD}ERROR:${CL} Proxmox ${BL}${current_kernel}${CL} Kernel Active"
|
||||||
echo -e "\nAn Active PVE Kernel is required to use Kernel Clean\n"
|
echo -e "\nAn Active PVE Kernel is required to use Kernel Clean\n"
|
||||||
@ -74,6 +76,7 @@ function other_kernel() {
|
|||||||
echo -e "\nThe script cannot be used when running opt-in kernels. \nProxmox VE's package management relies directly on the current default kernel, which is 5.15. \nTherefore, it is not possible to utilize this script. In this case, you should use autoremove instead. \n`apt-get autoremove`\n"
|
echo -e "\nThe script cannot be used when running opt-in kernels. \nProxmox VE's package management relies directly on the current default kernel, which is 5.15. \nTherefore, it is not possible to utilize this script. In this case, you should use autoremove instead. \n`apt-get autoremove`\n"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function kernel_info() {
|
function kernel_info() {
|
||||||
|
Loading…
Reference in New Issue
Block a user