So, I've configured Samba on my Linux server. I installed it as part of the setup, then I had to get it running.
I decided to get my hands dirty editing the smb.conf file directly rather than trying to get SWAT running, and it's not too bad. The documentation installed is good, and a half-useful techie will get to grips with the file share sections pretty quickly, but the point at which I came unstuck was authenticating from my XP machine.
The issue is that;
(a) you need to make sure that encypted passwords are set in smb.conf, and that
(b) you have a valid smbpasswd file for Samba to store the passwords in.
The most useful article I found is here - this makes it simple, and the critical command to output your /etc/passwd to the correct file is included.
For reference, the command is:
cat /etc/passwd | mksmbpasswd.sh > /etc/smbpasswd.
I decided to get my hands dirty editing the smb.conf file directly rather than trying to get SWAT running, and it's not too bad. The documentation installed is good, and a half-useful techie will get to grips with the file share sections pretty quickly, but the point at which I came unstuck was authenticating from my XP machine.
The issue is that;
(a) you need to make sure that encypted passwords are set in smb.conf, and that
(b) you have a valid smbpasswd file for Samba to store the passwords in.
The most useful article I found is here - this makes it simple, and the critical command to output your /etc/passwd to the correct file is included.
For reference, the command is:
cat /etc/passwd | mksmbpasswd.sh > /etc/smbpasswd.