November 14, 2008
I know many hate ATI+Linux, but I’m not a gamer and usually run linux by command line only. I have a ATI 9600 Pro AGP video card that I’ve been using in one of my MythTV frontend’s for years. In order to play high definition resolutions (720p 1080i) I need to use ATI’s proprietary linux [...]
Filed under: Hardware, Linux, MythTV |
Comments (1)
November 6, 2008
To allow all users:
AuthType Basic
AuthName “Domain Credentials Required”
AuthBasicProvider ldap
AuthLDAPURL “ldap://your.domain.com:389/ou=SubContainer,dc=domain,dc=com?sAMAccountName?sub?(objectClass=*)” NONE
AuthLDAPBindDN “cn=linux LDAP,ou=System Accounts,ou=Resources,dc=domain,dc=com”
AuthLDAPBindPassword “linux LDAP password”
AuthzLDAPAuthoritative off
Require valid-user
To allow specific users:
AuthType Basic
AuthName “Domain Credentials Required”
AuthBasicProvider ldap
AuthLDAPURL “ldap://your.domain.com:389/ou=SubContainer,dc=domain,dc=com?sAMAccountName?sub?(objectClass=*)” NONE
AuthLDAPBindDN “cn=linux LDAP,ou=System Accounts,ou=Resources,dc=domain,dc=com”
AuthLDAPBindPassword “linux LDAP password”
AuthzLDAPAuthoritative on
Require ldap-user bob frank joe
To allow members of a group:
AuthType Basic
AuthName “Domain Credentials Required”
AuthBasicProvider ldap
AuthLDAPURL “ldap://your.domain.com:389/ou=SubContainer,dc=domain,dc=com?sAMAccountName?sub?(objectClass=*)” NONE
AuthLDAPBindDN “cn=linux LDAP,ou=System Accounts,ou=Resources,dc=domain,dc=com”
AuthLDAPBindPassword [...]
Filed under: Linux, Microsoft, Windows |
Comments (0)