Linux で Samba Share ACL と Posix ACL を一緒に使用するにはどうすればいいですか

Linux で Samba Share ACL と Posix ACL を一緒に使用するにはどうすればいいですか

Share ACL と Posix ACL (ファイル権限) の組み合わせ例を探しています。しかし、両方を一緒に使用する例を見つけることができませんでした...

私は Solaris で「chmod A+」を使用していました。Linux では何を使用すればよいでしょうか?
Windows ACL とまったく同じ ACL を構築したいです。

何かご存知ですか、または例はありますか?

Samba バージョン: 4.6.5
OS: Arch Linux

私の smb.conf;

[Global]
  netbios name = NETBIOSM
  workgroup = TM
  realm = TM.PVT
  server string = %h TM Host
  security = ads
  encrypt passwords = yes

  idmap config SM.PVT : backend = ad
  idmap config SM.PVT : range = 10000-20000
  idmap config SM.PVT : schema_mode = rfc2307
  idmap config * : range = 8000-9000

  winbind use default domain = Yes
  winbind enum users = Yes
  winbind enum groups = Yes
  winbind nested groups = Yes
  winbind refresh tickets = yes
  winbind offline logon = yes
  winbind cache time = 300

  template shell = /bin/bash
  template homedir = /home/%D/%U

  preferred master = no
  dns proxy = no
  wins server = tmdc.tm.pvt
  wins proxy = no

#  acl group control = yes

  load printers = no
  debug level = 3
  use sendfile = no

  vfs objects = acl_xattr
  map acl inherit = yes
  store dos attributes = yes

[test]
 comment = ACL Test
 path = /testPool/smbtest
 valid users = TM.PVT\administrator TM.PVT\user1 SM.PVT\user2
 admin users = TM.PVT\administrator
 public = no
 writable = yes
 inherit permissions = yes
 inherit acls = yes

答え1

ようやくいくつかの説明が見つかりました。なぜ開発者は私たちがすでにすべてを知っていると思っているのか不思議です。以下のリンクを読めば、このトピックと開発の歴史について疑問に思っていることすべてに対する答えが見つかります。

https://www.ja-ki.eu/2016/09/19/gedaechtnisstuetze-acls-mit-zfs-on-linux-und-samba-4-5/

http://cuddletech.com/?p=23

http://cuddletech.com/?p=459

関連情報