I am running Lucid 64bit. I have noticed that when booting I get the following errors when mounting cifs volumes during the boot process.


from boot.log:

mount error(101): Network is unreachable
Refer to the mount.cifs( 8 ) manual page (e.g. man mount.cifs)
mount error(101): Network is unreachable
Refer to the mount.cifs( 8 ) manual page (e.g. man mount.cifs)
mount error(101): Network is unreachable
Refer to the mount.cifs( 8 ) manual page (e.g. man mount.cifs)
mountall: mount /media/misc [932] terminated with status 32
mountall: mount /media/music [933] terminated with status 32
mountall: mount /media/fs_files [934] terminated with status 32

they do mount but this error pauses the boot process for 10 or 15 seconds.

My assumption is that an attempt is made to mount the drives before the network is available.

Here's my fstab:

Code:
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sdc1 during installation
UUID=db3b4a6c-b264-409b-ba1a-46e540ae3697 /               ext3    errors=remount-ro 0       1
# /home was on /dev/sda3 during installation
UUID=88c8ed0c-43ee-4849-8fe3-a5603815c4d7 /home           ext3    defaults        0       2
# swap was on /dev/sdc5 during installation
UUID=32fb0558-2896-4532-86a2-480e33f08596 none            swap    sw              0       0

//192.168.5.102/misc /media/misc  cifs  credentials=/root/.smbcredentials,noperm,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
//192.168.5.102/music /media/music  cifs  credentials=/root/.smbcredentials,noperm,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
//192.168.5.102/files /media/fs_files  cifs  credentials=/root/.smbcredentials,noperm,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0

Any idea how to resolve this?

Thanks