Beim Versuch, einen setfacl-Befehl auf einem Linux-Host für eine Datei oder ein Verzeichnis in einem gemounteten Unity NFSv4-Export auszugeben, schlägt der Befehl fehl:
[root@hostname xyz]# setfacl -m g:mygroup:r-x testfile
setfacl: testfile: Operation not supported
setfacl funktioniert nicht mit NFSv4.
Sie müssen die Befehle nfs4-getfacl / nfs4-setfacl auf dem NFSv4-Mount verwenden. Die setfacl funktioniert nicht mit NFSv4.
Um diese Befehle verfügbar zu machen, ist die Installation des Pakets "nfs4-acl-tools package" erforderlich.
Beispiel für Debian-basierte Distros ( Debian, Ubuntu, Linux Mint usw.):
[root@hostname xyz]#apt-get install nfs4-acl-tools
[root@hostname xyz]#
[root@hostname xyz]#mount
192.168.1.14:/Test on /tmp/nfs type nfs4 (rw,relatime,vers=4.1,rsize=65536,wsize=65536,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=192.168.1.15,local_lock=none,addr=192.168.1.14)
[root@hostname xyz]#
[root@hostname xyz]#nfs4_setfacl -R -a A:g:10001:rW /tmp/nfs
[root@hostname xyz]#nfs4_getfacl /tmp/nfs
A:g:10001:rwaDtTNcCy
A:g:10001:rwaDtTNcCy
A:g:10001:rwaDtTNcCy
A::OWNER@:rwaDxtTnNcCy
A:g:GROUP@:rxtncy
A::EVERYONE@:rxtncy
[root@hostname xyz]#