From: "hbrhodes" <hbrhodes@xxxxxxxxx>
let me re-write what i meant happened. i'll provide more information.
i've been reading the internet groups and i've tried the howto's. i'm
running into an obstable and i am asking for assistance here! I have
FC5 as a server with samba files. it does not have swat, or a graphical
tool. it is a text or base server so i can conserve as much room as
possible on it for putting files on it. This is the same dumping
ground that i've been trying to get my upstairs fedora computer to write
to. i finally got it figured out with some assistance (nfs was turned
off). now i'm trying to get it set up so my wife (or i) can write files
to that computer (Samba Server) from her comupter (WinBlows).
the client(s) are going to be windows XP pro. i'm testing it out on the
one computer with xp pro installed on it now (home computers) and i can
log in with the right user name and password, and i can view the
folders. i cannot write to the home directory (i think that is turned
off ...) and i cannot write to the directory R2314 that i have shared.
the new smb.conf file is smb.conf and the old one is smb.conf.bak. I
have also set up the directory to be written to with the permissions:
/misc/R2314 GROUP rwxr-xrwx
i did this because i found an article that said i needed to let 'others'
rwx to the directory. every time i mess with the smb.conf file i do a
'service smb restart.' I think that is everything! Oh by the way, when
i try to write to the directory from WinBlows to the Samba Server ... it
says i do no have enough disk space or the appropriate permissions. and
samba Version is 3.0.23-1.fc5
i even went and added "smbpasswd -a " and added two users with two
passwords. both of whom have home directories.
this is the new samba configuration file (follows):
I presume the account names and passwords match on all machines. That
is a trifle obvious; but, I'm stating it explicitly just in case.
#Global Parameters
[global]
workgroup = RHODES
netbios name = Samba Server
Just off hand I do not believe netbios name is allowed to have spaces
in it. I do not use this parameter (nor is it even mentioned in any
of the smb.conf master files I've seen from various distros.) If you
leave it out and the machine's hostname is "silver" then the netbios
name will also be "silver". This often eliminates a lot of confusion
among users, usually the more savvy users.
encrypt passwords = yes
This is default so is redundant. That hurts nothing. The location for
the password file defaults to /etc/samba/smbpasswd. I see you seem to
have accepted the default.
security = user
This is also the default.
I also note these comments and line I have included:
===8<---
# Most people will find that this option gives better performance.
# See speed.txt and the manual pages for details
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
===8<---
I also set "local master" to no. In the past I've experienced too
much thrashing on the network when it's allowed. This prevents the
Linux machine from competing to be the local master browser for the
network.
[homes]
read only = no
I used the "writeable = yes" equivalent. No difference here.
browseable = yes
I have no here.
[R2314]
comment = HodgePodge of Data
path = /misc/R2314/
force user = hbrhodes klrhodes kelli
I use "valid users" here. I've never tried force user. I'd suspect it
would require exactly one user, though.
force group = wheel
I've also never used this.
read only = No
;guest ok = Yes
create mask = 0765
Nor have I used this, I probably should.
I also have "browseable = yes" in here.
Maybe these observations will help you.
{^_^}