$(subj), it appears to be what root user is denied by default for all of the shares. I'm trying to reproduce Windows administrative share.
3 Answers
Do you have a password set in Samba (not in the system passwd file) for root ? You should be able to set such a password by running smbpasswd -a root
.
- 395
- 1
- 8
-
3Slap forehead, vote up and accept! I completely forgot what there is no common AAA in the Linux! – user539484 Mar 13 '12 at 13:30
-
2Yes, this one needs marked as accepted – Addo Solutions Nov 03 '15 at 19:49
You should be putting up your smb.conf so that we can actually assess the problem. Anyway here's a hint:
invalid users = root
is part of the default smb.conf.
Well then. Is root a valid smbuser, yet? Then try explicitly allowing root :
valid users = root
And try something like this:
[config]
comment = Admin Config Share - Whatever
path = /
valid users = someusers, somegroup
force user = root
force group = root
admin users = someusers, somegroup
writeable = Yes
- 573
- 5
- 14
-
Does it have to be explicitly specified option or implicitly assumed? My `smb.conf` isnt "from-scratch" and does not contain any `valid users` or `invalid users` parameters at all. – user539484 Mar 10 '12 at 16:24
-
Hmm, also, according to [doc](http://www.samba.org/samba/docs/man/manpages-3/smb.conf.5.html#INVALIDUSERS) there is no invalid users by default. – user539484 Mar 10 '12 at 16:46
-
if you can't access two users, one for a regular user and the other for a root, you need to alias the netbios in smb.conf file so that windows sees them as two servers. Then access each with a different user id. You may also add to the windows' host file the same server's ip with different names. The issue is with Windows that can only allow one user at a time, thus cannot access as a root.
- 11
- 1