<br><br><div class="gmail_quote">On Thu, Apr 14, 2011 at 8:01 PM, Mike McGinn <span dir="ltr"><<a href="mailto:mikemcginn@mcginnweb.net">mikemcginn@mcginnweb.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
On Thursday, April 14, 2011 00:27:38 Tom H wrote:<br>
> On Tue, Apr 12, 2011 at 8:59 PM, Nick Edwards <<a href="mailto:nick.z.edwards@gmail.com">nick.z.edwards@gmail.com</a>><br>
wrote:<br>
> > When I start my notebook, login, wifi logs in, NFS connects, but if my<br>
> > wifi drops out, ubuntu lucid never reconnects to NFS, I've left it for<br>
> > hours and still wont.<br>
> ><br>
> > My fstab is<br>
> > 192.168.200.100:/files1 /files1 nfs<br>
> > rw,hard,intr,tcp,bg,rsize=32768,wsize=32768,nfsvers=3 0 0<br>
> > 192.168.200.100:/files2 /files2 nfs<br>
> > rw,hard,intr,tcp,bg,rsize=32768,wsize=32768,nfsvers=3 0 0<br>
> ><br>
> > my desktop does not have this problem, so I am sure it is not a server<br>
> > thing, besides, if I reboot, it will reconnect, so can't be server<br>
> > related.<br>
> ><br>
> > if I leave it for, well, now it's been 90 minutes since wifi reconnect, I<br>
> > try umount -a -t nfs I get<br>
> ><br>
> > umount.nfs: /files2: device is busy<br>
><br>
> umount -l ...<br>
> or<br>
> umount -fl ...<br>
> should do it.<br>
<br>
</div>You do not say what network manager you are using. If you are using NM first<br>
write a shell script to mount and unmount your shares. Then do something like<br>
outlined below. Then learn to use google.<br>
<br>
# /etc/NetworkManager/dispatcher.d/05-mnt-hshares<br>
# mount the shares I use at home when we connect<br>
#!/bin/sh<br>
export LC_ALL=C<br>
if [ "$1" = "eth1" ]; then<br>
if [ "$2" = "up" ]; then<br>
SSID=`iwconfig $IFACE | awk -F\" '{print $2}'`<br>
# unmount work shares<br>
/root/bin/workUnNetStuff.sh<br>
# mount home shares<br>
if [ "$SSID" = "fishnet" ]; then<br>
/root/bin/homeNetStuff.sh<br>
fi<br>
# /usr/sbin/vpnc<br>
fi<br>
if [ "$2" = "down" ]; then<br>
/root/bin/homeUnNetStuff.sh<br>
# /usr/sbin/vpnc-disconnect<br>
fi<br>
fi<br>
<font color="#888888"><br>
<br>
<br>
--<br>
Mike McGinn FACOCM<br>
You won't look forward to the trip!<br>
No electrons were harmed in sending this message.<br>
** Registered Linux User 377849<br>
</font><div><div></div><div class="h5"><br>
--<br>
ubuntu-users mailing list<br>
<a href="mailto:ubuntu-users@lists.ubuntu.com">ubuntu-users@lists.ubuntu.com</a><br>
Modify settings or unsubscribe at: <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-users" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-users</a><br>
</div></div></blockquote></div><br>Sorry, did you miss the part about umount not un-mounting, nor will force option correct it, requiring a reboot as only way for it to recover, this does _NOT_ happen with my freebsd desktop, if i pull the ethernet, go have a coffee, come back plug it in, it reconnects within a very short time, my friend who uses fedora 12 on her notebook, could drop out from the back yard, but when she comes in close and wifi re logs in, she also can browse nfs shares, its only ubuntu that wont.<br>
<br>