I was having the same problem when we upgraded to 10.4 in 2006. Try this:
Make sure you are logged in with an administrator account.
Open Terminal (/Applications/Utilities).
Create a backup of the current NFS Startup script with this command on a single line:
sudo cp /System/Library/StartupItems/NFS/NFS /System/Library/StartupItems/NFS/NFS.bak
Open the NFS Startup Item script for editing with nano by using this command:
sudo nano /System/Library/StartupItems/NFS/NFS
To locate the section of the script that starts automount, press Control-W, type “automounter”, and press Return.
Under the section “Start the automounter,” change the line that reads:
automount -m /Network -nsl -mnt ${AUTOMOUNTDIR}
to read:
automount -1 -m /Network -nsl -mnt ${AUTOMOUNTDIR}
Change the line that reads:
automount -m /automount/Servers -fstab -mnt /private/Network/Servers \
to read:
automount -1 -m /automount/Servers -fstab -mnt /private/Network/Servers \
Save the file (Control-O, Return), and exit nano (Control-X).
Reboot.
Comments are closed