--- layout: post title: "Ubuntu 12.04 Desktop with Zentyal 3.2" date: 2013-10-04 19:01 comments: true categories: [Zentyal, System Administration, LDAP, NFS, Ubuntu, IT] --- [Zentyal](http://zentyal.org), The Linux Small Business Server includes the most important services for a small or medium company. Most of the services are integrated around OpenLdap. Since version 3.1, Zentyal uses Samba4 as a Directory and File Sharing service. I'm maintaining the computers in the Francophone center in University of Sofia. Everything in this place is with Ubuntu workstations. There was a major hardware update this year. We got new servers, workstations and laptops.
Following the info from [this](http://forum.zentyal.org/index.php?topic=12925.0) forum topic, I installed Ubuntu 12.04 LTS for the desktops and Zentyal 3.2 as a Directory and file server. Home directories are on NFS share in Zentyal, so that the users can use their own profiles on any workstation. First I decided to use Centrify DC Express ([Documentation](https://help.ubuntu.com/community/DirectControl)) as an Active Directory client Samba shares, like in the forum topic. This type of setup gave me the possibility to use Samba 4's advanced directory options because CentrifyDC immitates M$ Windows client and the security of Samba. It seemed to work in the first test, but then bugs appeared. There are some privilege issues with Samba. For example, PulseAudio cannot initialize on boot because it cannot create the _~/.pulse_ directory. There were the simmilar issues with Firefox on some of the profiles. Then I decided to use NFS with Centrify, but another issue appeared. Centrify makes UID and GID different than the ones in Zentyal and users cannot write to their own profiles. NFSv4 can solve this problem with remapping, but it's still not documented and there's a lack of information on internet. If you are interested in it, you can search for _"/etc/idmapd.conf"_. So, I choosed the standard LDAP setup, like in the forum topic and NFS. Well, [another bug](https://bugs.launchpad.net/ubuntu/+source/at-spi2-core/+bug/870874) appeared but it can be fixed with a small hack. You must comment the "If" statement about gsettings (dconf) in _/etc/X11/Xsession.d/90qt-a11y_ : {% codeblock lang:bash Before (/etc/X11/Xsession.d/90qt-a11y) %} # -*- sh -*- # Xsession.d script to set the QT_ACCESSIBILITY env variable when accessibility # is enabled. # # This file is sourced by Xsession(5), not executed. if [ -x "/usr/bin/gsettings" ]; then a11y_enabled=$(gsettings get org.gnome.desktop.interface toolkit-accessibility) if [ "$a11y_enabled" = "true" ]; then export QT_ACCESSIBILITY=1 fi fi {% endcodeblock %} {% codeblock lang:bash After (/etc/X11/Xsession.d/90qt-a11y) %} # -*- sh -*- # Xsession.d script to set the QT_ACCESSIBILITY env variable when accessibility # is enabled. # # This file is sourced by Xsession(5), not executed. #if [ -x "/usr/bin/gsettings" ]; then # a11y_enabled=$(gsettings get #org.gnome.desktop.interface toolkit-accessibility) # if [ "$a11y_enabled" = "true" ]; then # export QT_ACCESSIBILITY=1 # fi #fi {% endcodeblock %} According to the forum topic, you need to install these packages on the Ubuntu client to run LDAP: {% codeblock lang:bash %} $ sudo apt-get install install libnss-ldap libpam-ldap libpam-mount winbind smbclient cifs-utils ldap-utils #Ignore all requests, just hit Enter {% endcodeblock %} And for NFS: {% codeblock lang:bash %} $ sudo apt-get install nfs-common libpam-mount {% endcodeblock %} Then, create again the file _/etc/ldap.conf_ : {% codeblock %} base dc=neo,dc=lan uri ldap://10.1.100.1:390 ldap_version 3 binddn cn=zentyalro,dc=neo,dc=lan bindpw jw4xF8KRS@IsEqxCbt=0 scope sub bind_policy soft pam_password md5 nss_base_passwd ou=Users,dc=neo,dc=lan?one nss_base_passwd ou=Computers,dc=neo,dc=lan?one nss_base_shadow ou=Users,dc=neo,dc=lan?one nss_base_group ou=Groups,dc=neo,dc=lan?one nss_schema rfc2307bis nss_map_attribute uniqueMember member nss_reconnect_tries 2 nss_initgroups_ignoreusers avahi,avahi-autoipd,backup,bin,colord,daemon,games,gnats,hplip,irc,kernoops,libuuid,lightdm,list,lp,mail,man,messagebus,news,proxy,pulse,root,rtkit,saned,speech-dispatcher,sshd,sync,sys,syslog,usbmux,uucp,whoopsie,www-data {% endcodeblock %} **Remarks:** * base - see "Users and Groups - LDAP settings - LDAP information - Base DN (in the Zentyal web frontend) * uri - use the IP address of your Zentyal box and Port 390 to reach Ldap * binddn - run grep ^binddn /etc/ldap.conf on your Zentyal server's shell * bindpw - run grep ^bindpw /etc/ldap.conf on your Zentyal server's shell Create a link for the _ldapsearch_ tool: {% codeblock lang:bash %} $ sudo ln -s /etc/ldap.conf /etc/ldap/ldap.conf {% endcodeblock %} For NSS: {% codeblock lang:bash %} $ sudo auth-client-config -t nss -p lac_ldap {% endcodeblock %} You can test the configuration with _$id USERNAME_ where the username must be from the Active Directory. To mount the home folder you need to insert this line in your _/etc/security/pam_mount.conf_ between _\