Posts

Showing posts with the label Samba 4 Active Directory Domain Controller on Ubuntu 20.10 Server

How to configure Ubuntu Linux server as a Domain Controller, Samba 4 Active Directory Domain Controller on Ubuntu 20.10 Server

 How to configure Ubuntu Linux server as a Domain Controller Samba 4 Active Directory Domain Controller on Ubuntu 20.10 Server How to install Active Directory on Ubuntu 20.10 LTS First, assign a static IP to your server. Ubuntu Server uses netplan for network management. Your network configuration will look similar to this: sudo ls /etc/netplan sudo vim /etc/netplan/ file name  --- network:   ethernets:     enp0s3:       dhcp4: no       addresses:       - 192.168.1.51/24       gateway4: 192.168.1.1       nameservers:         addresses: [8.8.8.8, 8.8.4.4]         search: []   version: 2 --- Apply the network config sudo netplan apply Check if time synchronization with an Internet server is working timedatectl Update the apt cache sudo apt update Change the hostname and update the hosts file sudo vim /etc/hostname --- dc1.aryan.com --- sudo vim /...