I;ve just solved it . Adding this the line to /etc/fstab on the client machine just let me mount it and write on it. I had no need to reboot or restart anything.
hq:/{109}# cat /etc/fstab /dev/wd0a / ffs rw,softdep 1 1 /dev/wd0d /tmp ffs rw,softdep,nodev,nosuid 1 2 /dev/wd0e /usr ffs rw,softdep,nodev 1 2 /dev/wd0f /var ffs rw,softdep,nodev,nosuid 1 2 /dev/wd0g /var/log ffs rw,softdep,nodev,nosuid 1 2 /dev/wd0h /u ffs rw,softdep,nodev,nosuid 1 2 10.10.10.65:/u/data/export /mnt ffs rw,softdep,nodev,nosuid 1 2 hq:/{110}# hq:/{110}# df -h Filesystem Size Used Avail Capacity Mounted on /dev/wd0a 509M 74.7M 409M 15% / /dev/wd0d 508M 4.2M 478M 1% /tmp /dev/wd0e 3.9G 2.6G 1.2G 69% /usr /dev/wd0f 508M 78.9M 403M 16% /var /dev/wd0g 949M 2.7M 899M 0% /var/log /dev/wd0h 65.0G 43.5G 18.2G 70% /u 10.10.10.65:/u/data/export 65.0G 40.4G 21.3G 65% /mnt hq:/{111}# umount /mnt/ hq:/{112}# mount -o rw -t nfs 10.10.10.65:/u/data/export /mnt/ hq:/{113}# > /mnt/hjdjfahjda hq:/{114}# Johan Torin escribis: > On Monday 06 July 2009, Marcos Laufer wrote: > >> Hello list , >> >> I am having trouble to make NFS work properly. I don't know what i am >> doing wrong, maybe >> someone can enlighten me. >> >> > > [config] > > >> 10.10.10.65:/u/data/export 65.0G 40.4G 21.3G 65% /mnt >> >> So far so good. Then i try to write something: >> >> hq:/{193}# cd >> /mnt/ >> >> hq:/mnt{194}# cp /bin/ls >> ./ >> >> cp: ./ls: Permission denied >> hq:/mnt{195}# >> >> What am i doing wrong here? >> > > What's your protection on the mount point of the /u/data/export directory > *before* mounting the slice on it? It's not the same protection mask before > and after... > > /Johan