I need to use pam_mount to mount user home directories individually at the time that each user logs in. I cant locate a package for this, at least for Centos 6. I would not have a problem building from source if this was a source based distro but because its not I would need to install gcc and all the dependences, seems like overkill.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 0 down vote accepted

I would expect a RHEL6/CentOS6 pam_mount package via EPEL soon.

Until then, you can cherry pick pam_mount and libHX from Fedora 12, as RHEL6 was largely based off of it.

Just grab the packages manually and do a yum install.

I went ahead and did this on one of my RHEL6 boxes, as I'm using pam_mount in a few places:

# yum install pam_mount-2.5-1.fc12.x86_64.rpm libHX-3.6-1.fc12.x86_64.rpm 

I went ahead and configured it, and it works perfectly.

Since CentOS aims for 100% binary compatibility with RHEL, it should work fine on your CentOS6 box too.

link|improve this answer
Sweet! I tried to do what you describe but when trying to do the yum localinstall I get an error "warning: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID 57bbccba: NOKEY Public key for pam_mount-2.5-1.fc12.x86_64.rpm is not installed ". Is there a way to install that public key? – startoftext Aug 22 '11 at 23:43
just add --nogpgcheck – Chad Feller Aug 22 '11 at 23:47
Thanks, I ended up finding that in google. I thought it was going to be more complicated then that. – startoftext Aug 22 '11 at 23:48
Did you run into any SELinux issues with pam_mount? – startoftext Aug 30 '11 at 23:02
no, and I am enforcing. are you seeing issues? – Chad Feller Aug 30 '11 at 23:06
feedback

The support matrix says: It does not work right now.

http://pam-mount.sourceforge.net/distro-support.php

It seems that you have to wait for a working release. Even installing the compiler toolchain will not help in this case.

link|improve this answer
The not so fine print from the top of that page: "(This page claims neither completeness nor actuality. It will be updated as I see fit, no need to write me.)" – Chad Feller Aug 20 '11 at 6:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.