Quote:
|
How does samba users map to linux users on the system?
|
This from my SMB.CONF file...
# Unix users can map to different SMB User names
username map = /usr/local/samba/etc/smbusers
Quote:
|
how would you set file permissions for a user that doesnt exist?
|
smbpasswd requires that a user be a valid UNIX user prior to being allowed into smbpasswd. Otherwise, map the users to "nobody", or a generic user that you create.
Quote:
|
How does /etc/samba/smbpasswd work into linux user security?
|
Because of the requirement of a REAL UNIX userid, after the usermap (from above) is applied - there is no difference.
Quote:
|
...Is it like "share" security on nt?
|
Yes, in that the direct filesystem security cannot be overridden by a share permission. A user (after usermap) either can or cannot read or write a file. The share permissions are one up in that a [share] section in smb.conf can specifically set a share to be available to a particular list of users, and force access to be read-only.
Quote:
|
How does samba groups map to the local groups on a linux server?
|
One to one. Although there is not a "group" mapping, a username (after usermapping) either belongs to a unix group or it doesn't.
Good luck.