Quote:
Originally Posted by ramram29
I got NIS, NFS and autofs to work. Everything works well. However, I would like to make the local workstation's /home folder become automounted during login. Has anobody done this before?
|
You mean to have it mounted at boottime? Add it to /etc/fstab
like this :
192.168.2.151:/home/user/ /mnt/devos-spk nfs user, rsize=8192 , wsize=8192,soft 0 0
(ALL ON ONE LINE)
where - 192.168.2.151:/home/user is the path to the share o/t host
- /mnt/devos-spk is where it is to be mounted o/t client
- nfs is... wel for nfs
- user means user can mount and unmount the filesystem
You might also need to add 'auto' between user and rsize on some
systems.
Good luck!