You can resolve some Active Directory Plug-in login issues, in which the computer becomes unresponsive ("hangs") at the blue progress bar, by changing the startup parameters for automount.
Warning: If you are unfamiliar with command-line interface and manual configuration in general, you should be cautious or seek assistance. Due to the advanced nature of this procedure, the complimentary support included with new Apple products does not cover this procedure. However, fee-based support is available through Apple Professional Services (http://www.apple.com/services/). If you do not follow these steps precisely, the script may not work, which could prevent the computer from starting up normally.
- 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 pico by using this command:
sudo pico /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 pico (Control-X).
- Reboot.