linux:ubuntu:rdp_ad_usr

Action disabled: index

Use Ubuntu Mate as a terminal server with Active Directory users

If you woke up this morning and said to your self “I'm looking for a good remote desktop connection to my Linux machine and can't find one that is both smooth and clear”, then you are in the right place. (Back by popular demand) Although I have already done several tutorials on the subject, I am going to show how it's done - all at once (and review the procedures to accommodate for the new software versions).

For this tutorial, I'll assume that your FQDN is sub.domain.local, and we will start with the XRDP friendly configuration by choosing Ubuntu MATE flavour.

Download and install Ubuntu MATE from their official page. It's always a good practice to update the newly installed OS, so update your Ubuntu Mate:

sudo apt-get update
sudo apt-get upgrade

Install XRDP on your Ubuntu mate

sudo apt-get install xrdp

If you use non standard keyboard (like I do) You will have to fix the keyboard mapping

  • Download keymapping files from here
  • Unpack the archive and copy the files to /etc/xrdp
  • Change group and owner to xrdp, and permissions to 644
  • Restart XRDP

At this point, install the SSH server since it is not here by default on the desktop version of Ubuntu, and you will receive an error when trying to join the AD domain.

sudo apt-get install openssh-server

Now you have to join your Ubuntu Mate to Active Directory Domain

Go to Beyond Trust page, and download PBIS open. You will have to register, and will receive the download link via e-mail upon registration

  • Download the appropriate file (32bit or 64bit deb file).
  • Unpack the archive (running it shall suffice)
  • Switch to the newly created directory, mark install.sh as executable and run it
sudo chmod +x install.sh
sudo ./install.sh

Upon installation, if domainjoin-gui doesn't start automatically, start it by typing

sudo .//opt/pbis/bin/domainjoin-gui
  • Enter the FQDN in the first field, and click 'Join domain'
  • Provide the username and password of the user with the privileges to join computers into the specified domain and click OK

When complete, run 'sudo visudo' and add the your domain user to sudoers.

SUB\\username ALL=(ALL) ALL

PowerBroker Identity Services create a user directory on the linux system upon first login by that user. PBIS uses /etc/skel to create these new directories, so create a default .xsession file in /etc/skel, containing the desktop environment that the AD user will see upon first login. Simply create a .xsession file in /etc/skel with the following content:

mate-session

Xrdp uses PAM to authenticate logins, so in the directory /etc/pam.d , you will notice there is a xrdp-sesman link to sesman file. This file specifies how xrdp uses PAM to authenticate users. The default one probably won't authenticate against AD, so you need to change it. Edit the xrdp-sesman file and replace the contents with the following:

#%PAM-1.0
@include common-auth
@include common-account
@include common-session
@include common-password

The common-* files have all been altered when you installled PBIS to include the necessary bits to authenticate against AD.

  • Reboot the machine

Your Active Directory users can now log into the OS using the console, RDP or SSH. On the login screen, select 'other' and enter your AD credentials in a form SUB\username. XRDP (and SSH) should work in the same manner.

That's about it. Relatively simple, and very rewarding in most cases.

Enter your comment:
148 -12 = 
 
  • linux/ubuntu/rdp_ad_usr.txt
  • Last modified: 2019/10/31 09:05
  • by 127.0.0.1