you need to do this on the server, not on the client
That's the problem!!! I have no ideas about changing permission on the server... Nothing on the SME manual... Maybe I'd rather have to learn about samba but I don't think it's so easy! Any helps?
I was thinking... If I change the server level deactivating the domain control funtion, as the server only a group member, do you think it can work?
I think kruhm is talking about :
chown
chmod
You should apply this in console mode.
eg:
You have files from a user (user01) belonging to a group (group01)
This you should do in console mode
chown user01:group01 /home/e-smith/files/users/user01/* -R
chmod 755 /home/e-smith/files/users/user01/* -R
7 = write/read/execute
5 = read/execute
so you get 7 for the user himself, 5 for the group and 5 for others If I remember well. Please check the man pages ( man chmod ) in console mode.