meta data for this page
  •  

Differences

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

Link to this comparison view

Next revision
Previous revision
vm:proxmox:backup:issues:acl_type_access [2025/08/23 07:55] – created niziakvm:proxmox:backup:issues:acl_type_access [2025/08/23 08:46] (current) niziak
Line 32: Line 32:
 </code> </code>
  
 +
 +''vzdump'' temp dir is ''/var/temp'' located on ''/'' and ''/'' is mounted with ''noacl'' flag:
 +
 +<code bash>
 +# findmnt -T /var/tmp
 +TARGET SOURCE           FSTYPE OPTIONS
 +/      rpool/ROOT/pve-1 zfs    rw,relatime,xattr,noacl,casesensitive
 +</code>
 +
 +
 +Hmm, it works before. Only PBS was upgraded to 4.0. But backup fails even when backup is performed to local ''hdd''.
 +
 +  * [[https://forum.proxmox.com/threads/problems-after-upgrade-to-pbs4.169566/|Problems after Upgrade to PBS4]]
 +
 +
 +Workaround:
 +<code bash>
 +zfs create nvmpool/vzdump-tmp
 +zfs set acltype=posixacl nvmpool/vzdump-tmp
 +</code>
 +
 +<file ini /etc/vzdump.conf>
 +tmpdir: /nvmpool/vzdump-tmp
 +</file>