Koozali.org: home of the SME Server

Mounting A NFS Share

Byte

Mounting A NFS Share
« 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

Nathan Fowler

Re: Mounting A NFS Share
« Reply #1 on: September 27, 2002, 07:19:45 AM »
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

Byte

Re: Mounting A NFS Share
« Reply #2 on: September 27, 2002, 01:31:32 PM »
yea sorry got big confused between nfs and smbfs, all works fine now!

thanks for your time

Byte