When trying to transfer files to the NGW100 I realized that the FTP server running on the device is very finicky especially when transferring files onto a media card. For this reason, I decided it would be better to mount a NFS share onto the NGW100.
You may have noticed that mounting an NFS share on the NGW100, the following does not work, resulting in an error:
mount -t nfs server:/data/public /media/public
mount: mounting server:/data/public on /media/public failed
You must specify the following options in order to mount a NFS share on the NGW100, and it should successfully mount the NFS share.
mount -t nfs -o nfsvers=2,nolock server:/data/public /media/public

hi, I have a problem to mount NFS share on NGW.. I download the Image of NGW100 of this site but i cant shared files.
host characteristics
Linux ngw.example.net 2.6.27.6.atmel.1 #4 Mon Feb 2 13:59:30 EST 2009 avr32 unknown
host ngw.example.net
When I wrote the code
mount -t nfs -o nfsvers=2,nolock server:/public /media/public
mount: server: Unknown host
Then I wrote this code
mount -t nfs -o nfsvers=2,nolock ngw.example.net:/public /media/public
mount: RPC: Unable to receive; errno = Connection refused
Please can help me with this problem.
[Reply]