Recent content by Dexter23

  1. D

    Error Backup Server

    Hi I fix the problem by replace ram, thanks.
  2. D

    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 103: 2026-02-17 22:53:40 INFO: 100% (1.5 TiB of 1.5...
  3. D

    Error Backup Server

    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 the next goes fine? ERROR: backup write data...
  4. D

    [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 Thanks
  5. D

    Script for monitor ZFS Usage

    Yes i try now with clone the vm disk become sparse.
  6. D

    Script for monitor ZFS Usage

    I enable the thin provision but the space remain the same as before:
  7. D

    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.
  8. D

    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 read -r NAME TYPE USAGE; do SUBJECT="Storage...
  9. D

    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 example 500gb but the size disk of the VM is 700GB the...
  10. D

    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?
  11. D

    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 AVAIL in bytes (-p) for calculation precision...
  12. D

    Script for monitor ZFS Usage

    My goal on this script is to have the same usage that WebUI is Showing is possible?
  13. D

    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 upgrade'. Once this is done, the pool may no...
  14. D

    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 - - 51% 37% 1.00x ONLINE - root@pve01:~# zfs...
  15. D

    Script for monitor ZFS Usage

    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) # Fetch ZFS pool data: Name and Capacity...