My system is also powered by ubuntu 10.04. I backed up my external hard drive by simply using nfs4 and grsync. I used following command at the end of fstab.
Code:
/media/mybook/laptop_backup /export/laptop_backup none bind 0 0
/media/mybook/laptop_D610 /export/laptop_D610 none bind 0 0
/media/mybook/laptop_www /export/laptop_www none bind 0 0
Above mentioned directories can be mounted as well as accessed via network connection. When I boot my computer it was prompted with an error message. Hence I executed below mentioned command to mount directories.
you should know that there is no mount command in /etc/fstab. So simply add the following.
Code:
/dev/sdd1 /media/mybook type ext3
However it failed at time of mounting directories. By after adding nobootwait option fixed the situation. It seems that nobootwait halts the booting until and unless mounting process get completed. Following are the command for /etc/fstab
Code:
/dev/sdd1 /media/mybook ext3 nobootwait
/media/mybook/laptop_backup /export/laptop_backup none bind 0 0
/media/mybook/laptop_D610 /export/laptop_D610 none bind 0 0
/media/mybook/laptop_www /export/laptop_www none bind 0 0 –
Bookmarks