Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
I have installed the unfs plugin
But I cannot run it..
/mnt/HD_a2/fun_plug.d/etc # sh /mnt/HD_a2/fun_plug.d/start/unfsd.sh
ERROR: rpc.portmap not found
Starting unfsd...
/mnt/HD_a2/fun_plug.d/etc #
My exports file looks like this:
/mnt/HD_a2/fun_plug.d/etc # cat exports
/ 192.168.0.0/24(rw,no_root_squash)
/mnt/HD_a2 192.168.0.0/24(rw,no_root_squash)
/mnt/HD_a2/fun_plug.d/etc #
Anyone help me??
How do I get the unfsd to run on start up also?
Thaks!
Offline
Port Map is running now... anyone know how I can set portmap & unfs to run on start up?
Still unable to map a drive
Last edited by dastrix (2008-03-13 04:11:11)
Offline
chmod a+x /mnt/HD_a2/fun_plug.d/startup/unfsd.sh
That will set the exec bit and it will start at startup no need to set it up in portmap as it gets called by unfsd.sh
Also make sure you have the exports file in place and with the right permissions for the shares......
/mnt/HD_a2/data 10.30.2.0/24(rw,no_root_squash)
Last edited by nUll (2008-03-13 04:28:49)
Offline
Here is my exports file
/mnt/HD_a2/fun_plug.d/etc # cat exports
/ 192.168.0.0/24(rw,no_root_squash)
/mnt/HD_a2 192.168.0.0/24(rw,no_root_squash)
/mnt/HD_a2/fun_plug.d/etc #
Thanks, ive set those scripts portmap one and unfs to startup..
Last edited by dastrix (2008-03-13 04:32:33)
Offline
dastrix wrote:
Still unable to map a drive
What commands are you trying to execute and what errors are you getting?
Offline
First make sure where the unfsd init script expects to find rpc.portmap:
/ # cat /mnt/HD_a2/fun_plug.d/start/unfsd.sh |egrep 'rpc|BINDIR' BINDIR=/mnt/HD_a2/fun_plug.d/bin if [ -x "${BINDIR}/rpc.portmap" ]; then echo "Starting rpc.portmap..." ${BINDIR}/rpc.portmap echo "ERROR: rpc.portmap not found" if [ -x "${BINDIR}/unfsd" ]; then ${BINDIR}/unfsd -e ${exports} -d 1>${LOGDIR}/unfsd.log 2>&1 &
Then make sure that file exists and is executable:
/ # ls -l /mnt/HD_a2/fun_plug.d/bin/rpc.portmap -rwxrwxrwx 1 root root 12888 Jul 22 2007 /mnt/HD_a2/fun_plug.d/bin/rpc.portmap
Make sure your exports file address matches your ip address:
/ # ifconfig egiga0 |grep inet inet addr:192.168.9.2 Bcast:192.168.9.255 Mask:255.255.255.240 / # cat /mnt/HD_a2/fun_plug.d/etc/exports |egrep '^/ ' / 192.168.9.0/24(rw,no_root_squash)
And make sure unfsd is running
/ # ps -ef |grep unfsd |grep -v grep 1663 root 1616 S /mnt/HD_a2/fun_plug.d/bin/unfsd -e /mnt/HD_a2/fun_plu / #
Then try mounting the filesystem from the client:
mount 192.168.9.2:/ /mnt
Offline
Did the above steps and its working! Ha
So, now that its mounted there - how do I go about having Windows Map to it?? As my NMT is still seeing a Samba share..
Thanks so much guys! q
Offline
I have no idea how you can map nfs on a Windows client as I don't use Windows... personally I would assume samba is better for linux -> windows mounting...
Offline
Damn. What about using a Popcorn hour NMT to map to it using NFS?
Offline