I used Likewise to do something similar on our servers. Here is the process we use to configure it:
Install similarly:
$ sudo apt-get update $ sudo apt-get install likewise-open
Join the domain (Assuming the domain is "domain.local")
$ sudo domainjoin-cli join domain.local Administrator $ sudo update-rc.d likewise-open defaults $ sudo /etc/init.d/likewise-open start
Assuming you are using sudo And you want AD users to have sudoer privileges, you need to edit the sudoers file. This can be done using the following command:
$ sudo visudo
then add the following to the end of the file (this assumes that the DOMAIN domain and all users who must have sudo are in a group called "linux_admin" in the active directory):
%DOMAIN\\linux_admin ALL=(ALL) ALL
source share