Linux alternative to windows domain, Linux server & Linux workstation

0

I'm looking for a way to manage Linux workstations in the same way that a windows domain manages windows clients, Just to be clear, I'm not looking for a windows domain server replacement, I'm want a Linux server to manage Linux clients My workstations run Debian 8.5 with cinnamon desktop. I need to be able to create new users and groups in the network, attach workstations, set policies by group or user remote updates, installs, logs, etc.

Thank you.

phper

Posted 2016-06-29T05:57:09.587

Reputation: 3

Answers

0

You may look for samba client which allows joining Linux to the Active Directory domain. You'll log in with AD user on the Linux desktop and access shares and resources then. But Windows policies can't be implemented on Linux of course.

You can look into configuration management systems like Puppet, Ansible or Chef. They will get you user management tools, update policies, software install, logs management, etc.

But it will not be an easy job because you'll need to program such a CMS login literally before you can use it. It will looks like that for Puppet:L

class my_desktops {
  package { 'mc':
    ensure => 'installed',
  }
  package { 'nano':
    ensure => 'installed',
  }
  package { 'sysstat':
    ensure => 'installed',
  }
}

Looks much like programming, don't you think?

Take a look here for the short overview of your possibilities here.

Valentin

Posted 2016-06-29T05:57:09.587

Reputation: 56

As a programmer, I'm not afraid of code :P – phper – 2016-06-30T13:18:14.907

Then you can pick any of configuration management systems and try it :) I like Puppet but that's personal. – Valentin – 2016-06-30T13:49:29.390