Well, what I am trying to do is to mount a Samba share with ACLs on my Ubuntu desktop. The share has UNIX permissions 700 and the following ACLs:
- Code: Select all
server> synoacltool -get /volume1/projekt
ACL version: 1
Archive: has_ACL,is_support_ACL
Owner: [root(user)]
---------------------
[0] group:biomil:allow:r-xp-DaARWc--:---n (level:0)
[1] group:biomil:allow:rwxpdDaARWc--:fdi- (level:0)
[2] user:nobody:allow:r-x---aARWc--:fd-- (level:0)
In my /etc/fstab on Ubuntu, I have the following row, more or less the same as in the Synology Wiki (http://forum.synology.com/wiki/index.ph ... work_Drive):
- Code: Select all
//192.168.20.2/projekt /media/projekt cifs iocharset=utf8,user=syno_username,password=syno_passwd,uid=local_username,gid=local_groupname,rw,dirmode=777,filemode=666 0
The user syno_username is part of the syno group biomil.
I can mount the share, but then I can't access it, probably because of a strange setting of the UNIX permissions (007):
- Code: Select all
d------rwx 64 daniel daniel 0 2011-12-05 11:36 projekt
I am able to access the share via Ubuntu's (Gnome's?) connect to server functionality, but then it is not mounted into the file system, so a number of actions will fail (such as opening files with certain programs, attaching files in Thunderbird etc).


