Dexter23's latest activity

  • D
    Dexter23 replied to the thread Error Backup Server.
    Hi I fix the problem by replace ram, thanks.
  • D
    Dexter23 replied to the thread Error Backup Server.
    I mean that i remove manually the backup on the PBS which have the verify state failed, this night the backup was succeed from the pve: 103: 2026-02-17 22:53:33 INFO: 99% (1.5 TiB of 1.5 TiB) in 1h 53m 30s, read: 138.1 MiB/s, write: 3.0 MiB/s...
  • D
    Hi everyone first time experience this type of error on PBS, after quick search is possible related to ram error as far as i understand. The Host is a Fujitsu Esprimo with 2x4gb of ram non-ecc. I can try remove the incrimanted backup and see if...
  • D
    Dexter23 replied to the thread [SOLVED] Storage usage.
    Yeah i try now on a pve test and it works as you said is only print out every vm disk that not have the "none" value on the name or refreservation, after that i run the command: zfs set refreservation=none zpoolname/vm-id-disk-id For every disk...
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    Yes i try now with clone the vm disk become sparse.
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    I enable the thin provision but the space remain the same as before:
    • 1770300827118.png
    • 1770300853945.png
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    I see that the command "pvesm" on Proxmox Backup Server is there a equivalent command to retrive this usage%? As the WebUI Shows: UPDATE: Really i don't need to make a script also for PBS because on PVE has already the PBS Storage for space monitor.
    • 1770211860958.png
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    Anyway i modify the script using the command "pvesm status" #!/bin/bash THRESHOLD=80 EMAIL="proxmox@mydomain.tld" HOSTNAME=$(hostname) pvesm status | grep "active" | tr -d '%' | awk -v limit="$THRESHOLD" '$7 >= limit {print $1, $2, $7}' | while...
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    So if i understand correctly if i do this command: zfs list -H -oname,refreservation | grep -Ev "none" | awk '/vm-/ {print $1'} | while read disk; do echo "zfs set refreservation=none $disk"; done In theory if that vm space occupied is for...
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    So if i uderstand correctly, the option "sparse 1" is when this checkbox is checked? But if i selected the existing file of vm disk is not reduce the allocated space right?So it doesn't make any changes if i enable this option after?
    • 1770208228641.png
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    This is the script: #!/bin/bash # Managed by Ansible THRESHOLD=80 EMAIL="proxmox@mydomain.tld" HOSTNAME=$(hostname) # 1. Get the names of all existing ZFS pools POOLS=$(zpool list -H -o name) for POOL in $POOLS; do # 2. Extract USED and...
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    My goal on this script is to have the same usage that WebUI is Showing is possible?
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    root@pve01:~# zpool status pool: rpool state: ONLINE status: Some supported and requested features are not enabled on the pool. The pool can still be used, but some features are unavailable. action: Enable all features using 'zpool...
  • D
    Dexter23 replied to the thread Script for monitor ZFS Usage.
    root@pve01:~# zpool list NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT rpool 428G 8.81G 419G - - 14% 2% 1.00x ONLINE - zpool01 888G 331G 557G - -...
  • D
    Hi everyone I build this bash script for monitor zfs pool and receive an email when the occupied space is more or equal then 80%. This is the script: #!/bin/bash # Managed by Ansible THRESHOLD=80 EMAIL="proxmox@mydomain.tld" HOSTNAME=$(hostname)...
    • 1770131152474.png
    • 1770131193836.png
  • D
    Dexter23 replied to the thread Mismatch Temperatures.
    • 1769091656229.png
  • D
    Dexter23 replied to the thread Mismatch Temperatures.
    Hi This is the sensor: /sys/class/hwmon/hwmon1/temp1_input
  • D
    Hi everyone I have a Proxmox running on a SuperMicro Server that detect high temperature, i use Beszel to monitor them: The sensor involved is "pch_haswell" (And i far as i understand is the chipset of the motherboard?) the temp is 94° degrees...
    • 1769067579263.png
    • 1769067679013.png