SAMBA -- Samba access of FAT32 mounted file system on FreeBSD
I mounted an external hard disk in /tempFiles
From a remote host I can see the resources using
I can connect to server using
But if I tried to list files I receive
I'm using FreeBSD 8 on a 386 machine. Obviously the directory is set correctly as public in smb.conf
Any idea?
thx
I mounted an external hard disk in /tempFiles
From a remote host I can see the resources using
smbClient -L <server name>
I can connect to server using
smbclient -U <user> //serverName/service
But if I tried to list files I receive
Code:
NT_STATUS_INVALID_PARAMETER listing \*
I'm using FreeBSD 8 on a 386 machine. Obviously the directory is set correctly as public in smb.conf
Code:
[Public]
comment = Temporary file folder on %S
path = /tempFiles
guest ok = yes
public = yes
guest only = yes
writable = yes
thx