Koozali.org: home of the SME Server
Legacy Forums => Experienced User Forum => Topic started by: Byte on September 26, 2002, 03:16:23 PM
-
Hi
Has anyone managed to mount a nfs share into e-smith from NT i've tryed
mount -t nfs....... but does not work:( has anyone got any ideas how to do this i know the smbclient works but that doesnt mount it
Thanks in advance for any info
Rgds
Byte
-
NFS isn't SMBFS, I think you're getting the two filesystems confused.
Try:
mkdir -p /mnt/myserver
/bin/mount -t smbfs -o username=,password= "///" /mnt/myserver
Example:
mkdir /mnt/smb
/bin/mount -t smbfs -o username=donkey,password=heehaw "//192.168.1.25/backup" /mnt/smb
When you access /mnt/smb you are looking at \192.168.1.25\backup
Notice the back slashes are replaced with forward slashes.
Hope this helped,
Nathan
-
yea sorry got big confused between nfs and smbfs, all works fine now!
thanks for your time
Byte