linux:proxmox

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
linux:proxmox [2024/04/15 03:21] – [Proxmox - SR-IOV - hardware passthrough - qsv] adminlinux:proxmox [2025/03/15 13:28] (current) – [Uefi problem] admin
Line 5: Line 5:
 https://tteck.github.io/Proxmox/ scripts utility proxmox \\ https://tteck.github.io/Proxmox/ scripts utility proxmox \\
 https://phucbone.github.io/ProxmoxCheatsheet/ \\ https://phucbone.github.io/ProxmoxCheatsheet/ \\
 +
 +
 +==== Proxmox monitoring ====
 +influx   https://forum.proxmox.com/threads/integrating-influxdb2-data-with-temperature-and-disks-info.118615/ \\
 +cpu and drive temp https://forum.proxmox.com/threads/proxmox-cpu-temp-and-using-in-vms.140742/ \\
 +
 +++++ add temp in summary table : nvme: 48.85℃ , drivetemp: 40℃ , coretemp: 48℃ |
 +{{ :linux:pvebackup.tgz |}}
 +<code BASH>
 +# url https://www.reddit.com/r/homelab/comments/rhq56e/displaying_cpu_temperature_in_proxmox_summery_in/
 +# use json format from vinicius_vbf / javascript from presisco
 +# also see more professional  variant https://github.com/alexleigh/pve-mods
 +# load drive temp module to temperature of drives
 +echo "drivetemp" > /etc/modules-load.d/drivetemp.conf
 +
 +scp   ~/pvebackup/Nodes.pm [email protected]:/usr/share/perl5/PVE/API2/Nodes.pm
 +scp   ~/pvebackup/pvemanagerlib.js  [email protected]:/usr/share/pve-manager/js/pvemanagerlib.js 
 +
 +
 +#// My variant of JavaScript code for filter wifi adaptor
 +function test(value){
 +                //const c0 = value.match(/Core 0.*?\+([\d\.]+)Â/)[1];
 +                //const c1 = value.match(/Core 1.*?\+([\d\.]+)Â/)[1];
 +                //const c2 = value.match(/Core 2.*?\+([\d\.]+)Â/)[1];
 +                //const c3 = value.match(/Core 3.*?\+([\d\.]+)Â/)[1];
 +                //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 === 'iwlwifi_1-virtual-0') continue;
 +     for (const [name, temps] of Object.entries(arr)) {
 +     if (name === 'Adapter') {
 +     continue
 +     }
 +     for(const [name, temp] of Object.entries(temps)) {
 +     if (name.includes("_input")){
 +     temp_arr.push(temp)
 +     }
 +     }
 +     }
 +     sections.push(dev.split('-')[0]+": "+temp_arr.join("℃ | ")+"℃ ")
 +     }
 +     return sections.join(", "   
 +            }
 +
 +
 +</code>
 +++++
 +
 +==== Proxmox Notification ====
 +https://www.youtube.com/watch?v=85ME8i4Ry6A - **technotim notification email**  \\
 +https://github.com/leovp/telegram_notifications **telegram_notifications** \\
 +==== Proxmox Docker ====
 +https://docs.scrypted.app/installation.html - install docker \\
 +
 +
 +==== Proxmox external monitoring ====
 +Monitoring health https://www.lectron.net/docs/craft/proxmox-monitoring-and-performance-optimization/proxmox-metrics-and-alerts-monitoring-and-alerting-system-health/ \\
 +Monitoring smart https://www.naturalborncoder.com/linux/2023/05/23/setting-up-smart-monitoring-in-proxmox/ \\
 +https://blog.klimov.su/post/rasshirennyj-monitoring-proxmox-s-pomoshyu-telegraf-i-influxdb \\
  
 ===== Proxmox - SR-IOV - hardware passthrough - qsv ===== ===== Proxmox - SR-IOV - hardware passthrough - qsv =====
 :!:<https://www.derekseaman.com/2023/11/proxmox-ve-8-1-windows-11-vgpu-vt-d-passthrough-with-intel-alder-lake.html> \\ :!:<https://www.derekseaman.com/2023/11/proxmox-ve-8-1-windows-11-vgpu-vt-d-passthrough-with-intel-alder-lake.html> \\
-  upgrade to 6.5.13-5 https://forum.proxmox.com/threads/kernel-upgrade-6-5-13-1-failed-to-install.144756/ \\+ -  upgrade to 6.5.13-5 https://forum.proxmox.com/threads/kernel-upgrade-6-5-13-1-failed-to-install.144756/ \\
 <https://www.michaelstinkerings.org/gpu-virtualization-with-intel-12th-gen-igpu-uhd-730/> \\<https://www.reddit.com/r/Proxmox/comments/14c8bpj/igpu_passthrough_for_intel_quick_sync/> \\ <https://www.michaelstinkerings.org/gpu-virtualization-with-intel-12th-gen-igpu-uhd-730/> \\<https://www.reddit.com/r/Proxmox/comments/14c8bpj/igpu_passthrough_for_intel_quick_sync/> \\
 +https://foxi.buduanwang.vip/virtualization/pve/2695.html/?ref=michaels-tinkerings \\
  
 ===== Proxmox LXC - Jellyfin  ===== ===== Proxmox LXC - Jellyfin  =====
Line 28: Line 90:
 echo "//192.168.114.134/video /mnt/nas cifs uid=0,credentials=$(eval echo ~)/.smb,iocharset=utf8,vers=3.0,noperm 0 0" | sudo tee -a /etc/fstab echo "//192.168.114.134/video /mnt/nas cifs uid=0,credentials=$(eval echo ~)/.smb,iocharset=utf8,vers=3.0,noperm 0 0" | sudo tee -a /etc/fstab
 </code> </code>
 +
 +
 +===== 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't happen with this version).
 +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 "Failed to open \EFI\BOOT\mmx64.efi", change the file name of "grubx64.efi" to "mmx64.efi" (located on /efi/boot on USB/CD).
 +Boot again and you will see no errors (I hope so).
 +</code>
 +
 +===== Proxmox ISCI =====
 +https://itproblog.ru/%D0%BF%D0%BE%D0%B4%D0%BA%D0%BB%D1%8E%D1%87%D0%B5%D0%BD%D0%B8%D0%B5-iscsi-%D0%B4%D0%B8%D1%81%D0%BA%D0%B0-%D0%B2-proxmox/
 +
  
  
  • linux/proxmox.1713151294.txt.gz
  • Last modified: 2024/04/15 03:21
  • by admin