Ken: thanks for that pointer. I've already discovered the problem discussed there, and solved it, although it causes hours of head-scratching.
It is an issue of domain security.
When a Windows NT/2K/XP machine joins a domain, it has 2 security databases: its local one and the domain one. Remote users trying to connect to that machine can use either sort of account. Let's say the machine is called WKSTN-1 in a domain MYLAN, and the PC had only one local account, "administrator", when it joined the domain. The share is called "backup".
If you're connecting from an SME Server which is the domain controller with Samba, you can use either the local "administrator" account or the domain "admin" account.
To mount the drive from the server shell prompt:
mount -t smbfs -o username:[uname],[pwd] //wkstn-1/backup /mnt/test
If you use a username of "wkstn-1/administrator", that's the local account. If you use "mylan/admin", that's the domain account.
There's a known problem with using local accounts to connect from Samba, so in the "username" box in the backup2ws screen in Server Manager, for the username, type:
domain name, forward slash, user name
e.g.
mylan/admin
to force Samba to use the domain account instead of the local account.
If, for some reason, you wanted to use the local account, you'd type:
machine name, forward slash, user name
e.g.
wkstn-1/administrator
The case of the user/machine/domain names *shouldn't* matter, in theory. I always use all lower case as a matter of course to avoid confusion.
However, the problem I'm having is that when backup2ws has created a file of maximum size - I've tried 2 million KB, in other words, just under 2 Gigabytes, and also 650,000 KB - either way, backup2ws just stops. I'd expected it to create a 2nd file and just keep on going. As it is, it appears to hang.
Has anyone else encountered this? Is it meant to happen? Is there anything I can do?
I don't want to archive to CDR or DVDR. I have bought 3 80GB USB2 drives just for archiving backups. Can I disable the maximum size? My drives are formatted as FAT32, meaning max file size is 4GB, but I am happy to reformat them as NTFS to remove any practical max file size issues. These drives will never be mounted on the server itself so Linux's maximum file size limit should not be an issue.