I am installing Samba in a CT and have discovered I need acl extensions enabled in the fs. I have configured LVM for my CTs and believe the CT is using ext4
root@ares:~# mount | grep "^/dev"
/dev/mapper/virtual--machines-vm--1013--disk--1 on / type ext4 (rw,relatime,data=ordered)
The following article suggests the resolution is to enable ACL extensions on the host by editing fstab:
-- Thats no big deal, simply edit /etc/fstab from something like this:
-- UUID=deviceID /vzstorage ext3 noatime 0 1
-- to this:
-- UUID=deviceID /vzstorage ext3 noatime,acl 0 1
https://www.skelleton.net/2012/08/01/setting-up-an-active-directory-with-samba/
My host fstab reads:
root@pve:/# cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pve/root / ext4 errors=remount-ro 0 1
/dev/pve/data /var/lib/vz ext4 defaults 0 1
/dev/pve/swap none swap sw 0 0
proc /proc proc defaults 0 0
My question is how should this be edited to enable ACL extensions in my CT?
root@ares:~# mount | grep "^/dev"
/dev/mapper/virtual--machines-vm--1013--disk--1 on / type ext4 (rw,relatime,data=ordered)
The following article suggests the resolution is to enable ACL extensions on the host by editing fstab:
-- Thats no big deal, simply edit /etc/fstab from something like this:
-- UUID=deviceID /vzstorage ext3 noatime 0 1
-- to this:
-- UUID=deviceID /vzstorage ext3 noatime,acl 0 1
https://www.skelleton.net/2012/08/01/setting-up-an-active-directory-with-samba/
My host fstab reads:
root@pve:/# cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pve/root / ext4 errors=remount-ro 0 1
/dev/pve/data /var/lib/vz ext4 defaults 0 1
/dev/pve/swap none swap sw 0 0
proc /proc proc defaults 0 0
My question is how should this be edited to enable ACL extensions in my CT?