Automounting Active Directory home drives on a Linux server on login

Posted by Ethan on Server Fault See other posts from Server Fault or by Ethan
Published on 2012-02-20T14:36:19Z Indexed on 2012/07/05 15:18 UTC
Read the original article Hit count: 346

I've got a Centos 5.7 box authenticating against Active Directory through PBIS Open (the new LikeWise Open), which works well. Now, I'm trying to get the server to automount the user's AD home directory, located at //ad.server.dom/shares/home directories (Yeah, it's a space in the path. I didn't set this up). Each user has a directory in there with the same name as the user.

I've tried to get pam_mount working, but it has a series of issues on RedHat and friends, and I can't seem to get that working. The directory does need to be automounted for the server to perform it's role. My reading on automount seems to suggest that there's no way to get it to do it's thing with authentication, though I'm happy to be proved wrong. I've looked at this resource, but it requires version RedHat (thus CentOS) 6 or higher, and newer packages than I have.

I can manually (As root) mount the AD directory using the command

mount.cifs "//ad.server.dom/Shares/home directories/testuser" /home/local/AD/testuser/nfs_mount/ -o username=testuser

and when I log in as testuser, I can see all of the sample files in the nfs_share directory.

Any tips towards the right direction would be highly appreciated. This is going to be on a server at a college, so it needs to be fairly stable, and would lead towards more Linux adoption there.

© Server Fault or respective owner

Related posts about networking

Related posts about active-directory