chown -R on /mnt/xxxx not permitted

Hi,

Why is it not possible to change the ownership on a mounted extFAT volume ?

cat /etc/fstab
...
#----------------------------------------------------------------
# PHYSICAL DRIVES
#----------------------------------------------------------------
UUID=c699a629-c0d9-40d0-8e1b-be819f253617 / ext4 noatime,lazytime,rw 0 1
UUID=2e0b34b5-bdd1-4f5d-bc7c-8af0fb1879c0 /mnt/2e0b34b5-bdd1-4f5d-bc7c-8af0fb1879c0 ext4 noatime,lazytime,rw,nofail,noauto,x-systemd.automount
UUID=A2CB-3C1B /mnt/A2CB-3C1B exfat noatime,lazytime,rw,nofail,noauto,x-systemd.automount

and

root@DietPi:~# sudo chown -R dietpi:dietpi /mnt/A2CB-3C1B/
chown: changing ownership of '/mnt/A2CB-3C1B/': Operation not permitted

Cheers

Charles

exFAT, as an extension of FAT, and does not support unix user permissions

I found a workaround as described https://stackoverflow.com/questions/25559700/chown-command-returning-operation-not-permitted which is : add uid and gid to the volume to be mounted

UUID=A2CB-3C1B /mnt/A2CB-3C1B exfat noatime,lazytime,rw,nofail,noauto,x-systemd.automount,gid=1000,uid=1000

Do I have to open to ask to add a new parameter to the dietpi-driver-manager to support that ?

feel free to open such a request