Hi, I'm trying to automount a NFS network drive in a vMA VM; I can do it manually via:
sudo mkdir /mnt/xyz; sudo /etc/init.d/portmap start; sudo /etc/init.d/nfslock start; sudo mount <my_network_server>:/xyz /mnt/xyz
but there seems to be no "automount" service with this kernel, or is it named something different?
chkconfig --level 3 autofs on
error reading information on service autofs: No such file or directory
I tried using chkconfig with the three services above but they don't seem to start upon reboot. Any ideas?
Thx, Pablo