Zorin OS Themensammlung
Go to file
2024-07-18 11:07:12 +00:00
README.md README.md aktualisiert 2024-07-18 11:07:12 +00:00
xRDP Installation Script Version 1.5.1.pdf Dateien nach "/" hochladen 2024-07-18 09:15:41 +00:00
xrdp-installer-1.5.1.zip Dateien nach "/" hochladen 2024-07-18 09:12:22 +00:00

Zorin OS

Remotezugang mit xRDP

  • Originalseite: https://c-nergy.be/blog/?p=19671
  • Das Installationsscript xrdp-installer-1.5.1.zip herunterladen
  • Anleitung in der Datei xRDP Installation Script Version 1.5.1.pdf

Active Directory nach der Installation einrichten

sudo apt install sssd-ad sssd-tools realmd adcli
sudo realm -v discover ad1.example.com
sudo realm join -v ad1.example.com
sudo pam-auth-update --enable mkhomedir

Achtung! Die Datei /etc/sssd/sssd.conf muss root:root gehören und permissions 0600 haben!

Lets highlight a few things from this config file:

 cache_credentials: This allows logins when the AD server is unreachable
                    fallback_homedir: The home directory. By default, /home/<user>@<domain>. For example, the AD user john will have a home directory of /home/john@ad1.example.com.
 use_fully_qualified_names: Users will be of the form user@domain, not just user. This should only be changed if you are certain no other domains
                            will ever join the AD forest, via one of the several possible trust relationships.

Tests:

getent passwd john@ad1.example.com
groups john@ad1.example.com

Tipp: Die Domain kann auch gekürzt werden: statt z.b. pr@ostrach.tld kann auch nur pr@ostrach verwendet werden.