Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
linux:proxmox [2024/04/15 02:42] – admin | linux:proxmox [2025/03/15 13:28] (current) – [Uefi problem] admin | ||
---|---|---|---|
Line 5: | Line 5: | ||
https:// | https:// | ||
https:// | https:// | ||
+ | |||
+ | |||
+ | ==== Proxmox monitoring ==== | ||
+ | influx | ||
+ | cpu and drive temp https:// | ||
+ | |||
+ | ++++ add temp in summary table : nvme: 48.85℃ , drivetemp: 40℃ , coretemp: 48℃ | | ||
+ | {{ : | ||
+ | <code BASH> | ||
+ | # url https:// | ||
+ | # use json format from vinicius_vbf / javascript from presisco | ||
+ | # also see more professional | ||
+ | # load drive temp module to temperature of drives | ||
+ | echo " | ||
+ | |||
+ | scp | ||
+ | scp | ||
+ | |||
+ | |||
+ | #// My variant of JavaScript code for filter wifi adaptor | ||
+ | function test(value){ | ||
+ | //const c0 = value.match(/ | ||
+ | //const c1 = value.match(/ | ||
+ | //const c2 = value.match(/ | ||
+ | //const c3 = value.match(/ | ||
+ | //return `Core 0: ${c0} ℃ | Core 1: ${c1} ℃ | Core 2: ${c2} ℃ | Core 3: ${c3} ℃` | ||
+ | const cpu_temp_arr=JSON.parse(value) | ||
+ | const sections=[] | ||
+ | for (const [dev, arr] of Object.entries(cpu_temp_arr)) { | ||
+ | const temp_arr=[] | ||
+ | if (dev === ' | ||
+ | for (const [name, temps] of Object.entries(arr)) { | ||
+ | if (name === ' | ||
+ | continue | ||
+ | } | ||
+ | for(const [name, temp] of Object.entries(temps)) { | ||
+ | if (name.includes(" | ||
+ | temp_arr.push(temp) | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | sections.push(dev.split(' | ||
+ | } | ||
+ | return sections.join(", | ||
+ | } | ||
+ | |||
+ | |||
+ | </ | ||
+ | ++++ | ||
+ | |||
+ | ==== Proxmox Notification ==== | ||
+ | https:// | ||
+ | https:// | ||
+ | ==== Proxmox Docker ==== | ||
+ | https:// | ||
+ | |||
+ | |||
+ | ==== Proxmox external monitoring ==== | ||
+ | Monitoring health https:// | ||
+ | Monitoring smart https:// | ||
+ | https:// | ||
===== Proxmox - SR-IOV - hardware passthrough - qsv ===== | ===== Proxmox - SR-IOV - hardware passthrough - qsv ===== | ||
: | : | ||
+ | | ||
< | < | ||
+ | https:// | ||
===== Proxmox LXC - Jellyfin | ===== Proxmox LXC - Jellyfin | ||
Line 27: | Line 90: | ||
echo "// | echo "// | ||
</ | </ | ||
+ | |||
+ | |||
+ | ===== Uefi problem ===== | ||
+ | <code BASH> | ||
+ | # MOK problem | ||
+ | I solved this problem. | ||
+ | |||
+ | Create a Live USB/CD of Ubuntu 17.10. | ||
+ | Boot this USB/CD in UEFI mode (the problem doesn' | ||
+ | Open terminal and use this command: sudo mokutil --reset. | ||
+ | Try to boot with the system you want to install. | ||
+ | If you get this another error " | ||
+ | Boot again and you will see no errors (I hope so). | ||
+ | </ | ||
+ | |||
+ | ===== Proxmox ISCI ===== | ||
+ | https:// | ||
+ | |||