You are not logged in.
My /etc/ftab entry for the share is :
//10.100.56.21/Academic /mnt/Academic/ cifs username=user,password=pass,_netdev 0 0
And at startup, I get the error :
Error 101, Network is unreachable....
Its a samba share which is password protected.
In my rc.conf:
DAEMONS=(syslog-ng !network hal networkmanager netfs crond alsa webmin avahi-daemon sshd arch32 samba)
Last edited by shadyabhi (2010-06-17 03:24:07)
My blog:-
http://blog.abhijeetr.com
Offline
At a guess, networkmanager isn't establishing the Network connection before netfs attempts to mount the share.... I assume after boot you can run `mount -a` and it all goes OK?
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
exactly as you said, I did mount -a and the shares were mounted.
So, whats the solution. Do I mount share at the end of networkmanager script instead of /etc/fstab?
My blog:-
http://blog.abhijeetr.com
Offline
I don't think there is an 'elegant' solution to this. Add `mount -a` to your rc.local file
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
You can use the following in your /etc/rc.local
( until ping -q -W4 -c1 google.com &>/dev/null; do
sleep 5
done
mount /mnt/Academic
) &
Last edited by demian (2010-06-17 08:08:48)
no place like /home
github
Offline
Offline