Joining Ubuntu 18.04 to Windows Active Directory Domain The 2019 Stack Overflow Developer Survey Results Are InWindows 7 cannot join samba domainkeytab auth against samba 4 DC: Client not found in Kerberos database while getting initial credentialsRemoving a “semi joined” Ubuntu workstation from an Active Directory domainQ: RHEL, SSSD, Active DirectorySet up Samba with Active Directory and local user authenticationProblems joining Ubuntu desktop to Active Directory domain using SambaSamba 4.2.10 on Debian 6.5 file share with windows active directory userskinit: Cannot find KDC for realmwinbind authentication through apache slowSamba4 in AD Domain: getent shows only local accounts

Is it okay to consider publishing in my first year of PhD?

What is this sharp, curved notch on my knife for?

Output the Arecibo Message

Can a flute soloist sit?

What is this business jet?

Does adding complexity mean a more secure cipher?

Can there be female White Walkers?

Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?

What does もの mean in this sentence?

Does HR tell a hiring manager about salary negotiations?

If my opponent casts Ultimate Price on my Phantasmal Bear, can I save it by casting Snap or Curfew?

Keeping a retro style to sci-fi spaceships?

Why doesn't shell automatically fix "useless use of cat"?

Why doesn't UInt have a toDouble()?

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

Kerning for subscripts of sigma?

Correct punctuation for showing a character's confusion

Why not take a picture of a closer black hole?

How do PCB vias affect signal quality?

Cooking pasta in a water boiler

What is the most efficient way to store a numeric range?

What do these terms in Caesar's Gallic Wars mean?

Are spiders unable to hurt humans, especially very small spiders?

I am an eight letter word. What am I?



Joining Ubuntu 18.04 to Windows Active Directory Domain



The 2019 Stack Overflow Developer Survey Results Are InWindows 7 cannot join samba domainkeytab auth against samba 4 DC: Client not found in Kerberos database while getting initial credentialsRemoving a “semi joined” Ubuntu workstation from an Active Directory domainQ: RHEL, SSSD, Active DirectorySet up Samba with Active Directory and local user authenticationProblems joining Ubuntu desktop to Active Directory domain using SambaSamba 4.2.10 on Debian 6.5 file share with windows active directory userskinit: Cannot find KDC for realmwinbind authentication through apache slowSamba4 in AD Domain: getent shows only local accounts



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'm currently attempting to join an Ubuntu box to a Windows domain, eventually with the intention of allowing Windows-based domain members to access a Samba network share using their AD credentials. The DC is running on Windows (not Samba) and has DHCP/DNS running on a Linux server (using BIND). The DC (dc0/dc0.corp.company.internal) has authority within the "CORP" zone, which is also being used as the name of the domain itself.



Kerberos kinit/klist appear to work fine:



root@samba:~# kinit
Password for administrator@CORP.COMPANY.INTERNAL:

root@samba:~# klist
Ticket cache: FILE:/tmp/krb5cc_0
Default principal: administrator@CORP.COMPANY.INTERNAL

Valid starting Expires Service principal
04/11/2019 00:10:39 04/11/2019 00:20:33 krbtgt/CORP.COMPANY.INTERNAL@CORP.COMPANY.INTERNAL


DNS appears to be working properly as well.



My assumption as to why the issue is with the Samba configuration, as I was able to join before. I didn't realize this at the time as there were still some errors - so I continued to change the smb.conf file to get it to "work."



Unfortunately, I do not have/did not save the configuration which actually worked. I'm trying to get it back to that stage, but am not sure what's actually wrong in order to diagnose it.



I've been following the following guide on the Samba wiki: https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member



Everything seems to work until "Configuring Samba" and the steps that follow. There are two sets of errors I believe to be most important, first from "net ads join:"



root@samba:/etc/samba# net ads join -U administrator
Enter administrator's password:
gse_get_client_auth_token: gss_init_sec_context failed with [ Miscellaneous failure (see text): Message stream modified](______)
kinit succeeded but ads_sasl_spnego_gensec_bind(KRB5) failed for ldap/dc0 with user[administrator] realm[CORP.COMPANY.INTERNAL]: The attempted logon is invalid. This is either due to a bad username or authentication information.
Failed to join domain: failed to connect to AD: The attempted logon is invalid. This is either due to a bad username or authentication information.


Second, I get an error when I attempt to start Winbind:



systemd[1]: Starting Samba Winbind Daemon...
winbindd[22323]: [0] ../source3/winbindd/winbindd_cache.c:3170(initialize_winbindd_cache)
winbindd[22323]: initialize_winbindd_cache: clearing cache and re-creating with version number 2
winbindd[22323]: [0] ../source3/winbindd/winbindd_util.c:891(init_domain_list)
winbindd[22323]: Could not fetch our SID - did we join?
winbindd[22323]: [0] ../source3/winbindd/winbindd.c:1366(winbindd_register_handlers)
winbindd[22323]: unable to initialize domain list
systemd[1]: winbind.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: winbind.service: Failed with result 'exit-code'.
systemd[1]: Failed to start Samba Winbind Daemon.


Here is my current smb.conf file:



[global]

username map = /usr/local/samba/etc/user.map

realm = CORP.COMPANY.INTERNAL
security = ADS
workgroup = CORP

log file = /var/log/samba/%m.log
log level = 1

# Default ID mapping configuration for local BUILTIN accounts
# and groups on a domain member. The default (*) domain:
# - must not overlap with any domain ID mapping configuration!
# - must use a read-write-enabled back end, such as tdb.
idmap config * : backend = tdb
idmap config * : range = 3000-7999
# - You must set a DOMAIN backend configuration
# idmap config for the SAMDOM domain
idmap config SAMDOM : backend = rid
idmap config SAMDOM : range = 10000-999999

# Template settings for login shell and home directory
template shell = /bin/bash
template homedir = /home/%U


The solutions mentioned in other similar questions (such as removing avahi-daemon) have already been attempted and failed. The steps have also been attempted on a secondary machine and account which had not at any point been joined to the domain and have been successfully reproduced. Given that it has already, in some capacity, previously succeeded, I am assuming that the problem is not with the DNS/DC configuration but rather with the client/member configuration, most likely smb.conf and potentially krb5.cond.



I'm not sure if it's an issue with Ubuntu 18.04 and Winbind/Samba versions, something about which Winbind backend I use (ad/rid/autorid) or if it would be a better idea to use SSSD or something instead of Winbind. I might be following the steps in the Samba wiki guide incorrectly, but I've attempted them multiple times and unfortunately I haven't seen clear enough errors to find exactly what I'm doing wrong.



If anyone can please point me as to where I should look for clear documentation on this, or point out where I made a mistake, I would greatly appreciate it, thanks!










share|improve this question







New contributor




svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    0















    I'm currently attempting to join an Ubuntu box to a Windows domain, eventually with the intention of allowing Windows-based domain members to access a Samba network share using their AD credentials. The DC is running on Windows (not Samba) and has DHCP/DNS running on a Linux server (using BIND). The DC (dc0/dc0.corp.company.internal) has authority within the "CORP" zone, which is also being used as the name of the domain itself.



    Kerberos kinit/klist appear to work fine:



    root@samba:~# kinit
    Password for administrator@CORP.COMPANY.INTERNAL:

    root@samba:~# klist
    Ticket cache: FILE:/tmp/krb5cc_0
    Default principal: administrator@CORP.COMPANY.INTERNAL

    Valid starting Expires Service principal
    04/11/2019 00:10:39 04/11/2019 00:20:33 krbtgt/CORP.COMPANY.INTERNAL@CORP.COMPANY.INTERNAL


    DNS appears to be working properly as well.



    My assumption as to why the issue is with the Samba configuration, as I was able to join before. I didn't realize this at the time as there were still some errors - so I continued to change the smb.conf file to get it to "work."



    Unfortunately, I do not have/did not save the configuration which actually worked. I'm trying to get it back to that stage, but am not sure what's actually wrong in order to diagnose it.



    I've been following the following guide on the Samba wiki: https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member



    Everything seems to work until "Configuring Samba" and the steps that follow. There are two sets of errors I believe to be most important, first from "net ads join:"



    root@samba:/etc/samba# net ads join -U administrator
    Enter administrator's password:
    gse_get_client_auth_token: gss_init_sec_context failed with [ Miscellaneous failure (see text): Message stream modified](______)
    kinit succeeded but ads_sasl_spnego_gensec_bind(KRB5) failed for ldap/dc0 with user[administrator] realm[CORP.COMPANY.INTERNAL]: The attempted logon is invalid. This is either due to a bad username or authentication information.
    Failed to join domain: failed to connect to AD: The attempted logon is invalid. This is either due to a bad username or authentication information.


    Second, I get an error when I attempt to start Winbind:



    systemd[1]: Starting Samba Winbind Daemon...
    winbindd[22323]: [0] ../source3/winbindd/winbindd_cache.c:3170(initialize_winbindd_cache)
    winbindd[22323]: initialize_winbindd_cache: clearing cache and re-creating with version number 2
    winbindd[22323]: [0] ../source3/winbindd/winbindd_util.c:891(init_domain_list)
    winbindd[22323]: Could not fetch our SID - did we join?
    winbindd[22323]: [0] ../source3/winbindd/winbindd.c:1366(winbindd_register_handlers)
    winbindd[22323]: unable to initialize domain list
    systemd[1]: winbind.service: Main process exited, code=exited, status=1/FAILURE
    systemd[1]: winbind.service: Failed with result 'exit-code'.
    systemd[1]: Failed to start Samba Winbind Daemon.


    Here is my current smb.conf file:



    [global]

    username map = /usr/local/samba/etc/user.map

    realm = CORP.COMPANY.INTERNAL
    security = ADS
    workgroup = CORP

    log file = /var/log/samba/%m.log
    log level = 1

    # Default ID mapping configuration for local BUILTIN accounts
    # and groups on a domain member. The default (*) domain:
    # - must not overlap with any domain ID mapping configuration!
    # - must use a read-write-enabled back end, such as tdb.
    idmap config * : backend = tdb
    idmap config * : range = 3000-7999
    # - You must set a DOMAIN backend configuration
    # idmap config for the SAMDOM domain
    idmap config SAMDOM : backend = rid
    idmap config SAMDOM : range = 10000-999999

    # Template settings for login shell and home directory
    template shell = /bin/bash
    template homedir = /home/%U


    The solutions mentioned in other similar questions (such as removing avahi-daemon) have already been attempted and failed. The steps have also been attempted on a secondary machine and account which had not at any point been joined to the domain and have been successfully reproduced. Given that it has already, in some capacity, previously succeeded, I am assuming that the problem is not with the DNS/DC configuration but rather with the client/member configuration, most likely smb.conf and potentially krb5.cond.



    I'm not sure if it's an issue with Ubuntu 18.04 and Winbind/Samba versions, something about which Winbind backend I use (ad/rid/autorid) or if it would be a better idea to use SSSD or something instead of Winbind. I might be following the steps in the Samba wiki guide incorrectly, but I've attempted them multiple times and unfortunately I haven't seen clear enough errors to find exactly what I'm doing wrong.



    If anyone can please point me as to where I should look for clear documentation on this, or point out where I made a mistake, I would greatly appreciate it, thanks!










    share|improve this question







    New contributor




    svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      0












      0








      0








      I'm currently attempting to join an Ubuntu box to a Windows domain, eventually with the intention of allowing Windows-based domain members to access a Samba network share using their AD credentials. The DC is running on Windows (not Samba) and has DHCP/DNS running on a Linux server (using BIND). The DC (dc0/dc0.corp.company.internal) has authority within the "CORP" zone, which is also being used as the name of the domain itself.



      Kerberos kinit/klist appear to work fine:



      root@samba:~# kinit
      Password for administrator@CORP.COMPANY.INTERNAL:

      root@samba:~# klist
      Ticket cache: FILE:/tmp/krb5cc_0
      Default principal: administrator@CORP.COMPANY.INTERNAL

      Valid starting Expires Service principal
      04/11/2019 00:10:39 04/11/2019 00:20:33 krbtgt/CORP.COMPANY.INTERNAL@CORP.COMPANY.INTERNAL


      DNS appears to be working properly as well.



      My assumption as to why the issue is with the Samba configuration, as I was able to join before. I didn't realize this at the time as there were still some errors - so I continued to change the smb.conf file to get it to "work."



      Unfortunately, I do not have/did not save the configuration which actually worked. I'm trying to get it back to that stage, but am not sure what's actually wrong in order to diagnose it.



      I've been following the following guide on the Samba wiki: https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member



      Everything seems to work until "Configuring Samba" and the steps that follow. There are two sets of errors I believe to be most important, first from "net ads join:"



      root@samba:/etc/samba# net ads join -U administrator
      Enter administrator's password:
      gse_get_client_auth_token: gss_init_sec_context failed with [ Miscellaneous failure (see text): Message stream modified](______)
      kinit succeeded but ads_sasl_spnego_gensec_bind(KRB5) failed for ldap/dc0 with user[administrator] realm[CORP.COMPANY.INTERNAL]: The attempted logon is invalid. This is either due to a bad username or authentication information.
      Failed to join domain: failed to connect to AD: The attempted logon is invalid. This is either due to a bad username or authentication information.


      Second, I get an error when I attempt to start Winbind:



      systemd[1]: Starting Samba Winbind Daemon...
      winbindd[22323]: [0] ../source3/winbindd/winbindd_cache.c:3170(initialize_winbindd_cache)
      winbindd[22323]: initialize_winbindd_cache: clearing cache and re-creating with version number 2
      winbindd[22323]: [0] ../source3/winbindd/winbindd_util.c:891(init_domain_list)
      winbindd[22323]: Could not fetch our SID - did we join?
      winbindd[22323]: [0] ../source3/winbindd/winbindd.c:1366(winbindd_register_handlers)
      winbindd[22323]: unable to initialize domain list
      systemd[1]: winbind.service: Main process exited, code=exited, status=1/FAILURE
      systemd[1]: winbind.service: Failed with result 'exit-code'.
      systemd[1]: Failed to start Samba Winbind Daemon.


      Here is my current smb.conf file:



      [global]

      username map = /usr/local/samba/etc/user.map

      realm = CORP.COMPANY.INTERNAL
      security = ADS
      workgroup = CORP

      log file = /var/log/samba/%m.log
      log level = 1

      # Default ID mapping configuration for local BUILTIN accounts
      # and groups on a domain member. The default (*) domain:
      # - must not overlap with any domain ID mapping configuration!
      # - must use a read-write-enabled back end, such as tdb.
      idmap config * : backend = tdb
      idmap config * : range = 3000-7999
      # - You must set a DOMAIN backend configuration
      # idmap config for the SAMDOM domain
      idmap config SAMDOM : backend = rid
      idmap config SAMDOM : range = 10000-999999

      # Template settings for login shell and home directory
      template shell = /bin/bash
      template homedir = /home/%U


      The solutions mentioned in other similar questions (such as removing avahi-daemon) have already been attempted and failed. The steps have also been attempted on a secondary machine and account which had not at any point been joined to the domain and have been successfully reproduced. Given that it has already, in some capacity, previously succeeded, I am assuming that the problem is not with the DNS/DC configuration but rather with the client/member configuration, most likely smb.conf and potentially krb5.cond.



      I'm not sure if it's an issue with Ubuntu 18.04 and Winbind/Samba versions, something about which Winbind backend I use (ad/rid/autorid) or if it would be a better idea to use SSSD or something instead of Winbind. I might be following the steps in the Samba wiki guide incorrectly, but I've attempted them multiple times and unfortunately I haven't seen clear enough errors to find exactly what I'm doing wrong.



      If anyone can please point me as to where I should look for clear documentation on this, or point out where I made a mistake, I would greatly appreciate it, thanks!










      share|improve this question







      New contributor




      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I'm currently attempting to join an Ubuntu box to a Windows domain, eventually with the intention of allowing Windows-based domain members to access a Samba network share using their AD credentials. The DC is running on Windows (not Samba) and has DHCP/DNS running on a Linux server (using BIND). The DC (dc0/dc0.corp.company.internal) has authority within the "CORP" zone, which is also being used as the name of the domain itself.



      Kerberos kinit/klist appear to work fine:



      root@samba:~# kinit
      Password for administrator@CORP.COMPANY.INTERNAL:

      root@samba:~# klist
      Ticket cache: FILE:/tmp/krb5cc_0
      Default principal: administrator@CORP.COMPANY.INTERNAL

      Valid starting Expires Service principal
      04/11/2019 00:10:39 04/11/2019 00:20:33 krbtgt/CORP.COMPANY.INTERNAL@CORP.COMPANY.INTERNAL


      DNS appears to be working properly as well.



      My assumption as to why the issue is with the Samba configuration, as I was able to join before. I didn't realize this at the time as there were still some errors - so I continued to change the smb.conf file to get it to "work."



      Unfortunately, I do not have/did not save the configuration which actually worked. I'm trying to get it back to that stage, but am not sure what's actually wrong in order to diagnose it.



      I've been following the following guide on the Samba wiki: https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member



      Everything seems to work until "Configuring Samba" and the steps that follow. There are two sets of errors I believe to be most important, first from "net ads join:"



      root@samba:/etc/samba# net ads join -U administrator
      Enter administrator's password:
      gse_get_client_auth_token: gss_init_sec_context failed with [ Miscellaneous failure (see text): Message stream modified](______)
      kinit succeeded but ads_sasl_spnego_gensec_bind(KRB5) failed for ldap/dc0 with user[administrator] realm[CORP.COMPANY.INTERNAL]: The attempted logon is invalid. This is either due to a bad username or authentication information.
      Failed to join domain: failed to connect to AD: The attempted logon is invalid. This is either due to a bad username or authentication information.


      Second, I get an error when I attempt to start Winbind:



      systemd[1]: Starting Samba Winbind Daemon...
      winbindd[22323]: [0] ../source3/winbindd/winbindd_cache.c:3170(initialize_winbindd_cache)
      winbindd[22323]: initialize_winbindd_cache: clearing cache and re-creating with version number 2
      winbindd[22323]: [0] ../source3/winbindd/winbindd_util.c:891(init_domain_list)
      winbindd[22323]: Could not fetch our SID - did we join?
      winbindd[22323]: [0] ../source3/winbindd/winbindd.c:1366(winbindd_register_handlers)
      winbindd[22323]: unable to initialize domain list
      systemd[1]: winbind.service: Main process exited, code=exited, status=1/FAILURE
      systemd[1]: winbind.service: Failed with result 'exit-code'.
      systemd[1]: Failed to start Samba Winbind Daemon.


      Here is my current smb.conf file:



      [global]

      username map = /usr/local/samba/etc/user.map

      realm = CORP.COMPANY.INTERNAL
      security = ADS
      workgroup = CORP

      log file = /var/log/samba/%m.log
      log level = 1

      # Default ID mapping configuration for local BUILTIN accounts
      # and groups on a domain member. The default (*) domain:
      # - must not overlap with any domain ID mapping configuration!
      # - must use a read-write-enabled back end, such as tdb.
      idmap config * : backend = tdb
      idmap config * : range = 3000-7999
      # - You must set a DOMAIN backend configuration
      # idmap config for the SAMDOM domain
      idmap config SAMDOM : backend = rid
      idmap config SAMDOM : range = 10000-999999

      # Template settings for login shell and home directory
      template shell = /bin/bash
      template homedir = /home/%U


      The solutions mentioned in other similar questions (such as removing avahi-daemon) have already been attempted and failed. The steps have also been attempted on a secondary machine and account which had not at any point been joined to the domain and have been successfully reproduced. Given that it has already, in some capacity, previously succeeded, I am assuming that the problem is not with the DNS/DC configuration but rather with the client/member configuration, most likely smb.conf and potentially krb5.cond.



      I'm not sure if it's an issue with Ubuntu 18.04 and Winbind/Samba versions, something about which Winbind backend I use (ad/rid/autorid) or if it would be a better idea to use SSSD or something instead of Winbind. I might be following the steps in the Samba wiki guide incorrectly, but I've attempted them multiple times and unfortunately I haven't seen clear enough errors to find exactly what I'm doing wrong.



      If anyone can please point me as to where I should look for clear documentation on this, or point out where I made a mistake, I would greatly appreciate it, thanks!







      ubuntu active-directory samba samba4 ubuntu-18.04






      share|improve this question







      New contributor




      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 3 hours ago









      svartedaudensvartedauden

      1




      1




      New contributor




      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      svartedauden is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "2"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          svartedauden is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f962694%2fjoining-ubuntu-18-04-to-windows-active-directory-domain%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          svartedauden is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          svartedauden is a new contributor. Be nice, and check out our Code of Conduct.












          svartedauden is a new contributor. Be nice, and check out our Code of Conduct.











          svartedauden is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Server Fault!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f962694%2fjoining-ubuntu-18-04-to-windows-active-directory-domain%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to make RAID controller rescan devices The 2019 Stack Overflow Developer Survey Results Are InLSI MegaRAID SAS 9261-8i: Disk isn't recognized after replacementHow to monitor the hard disk status behind Dell PERC H710 Raid Controller with CentOS 6?LSI MegaRAID - Recreate missing RAID 1 arrayext. 2-bay USB-Drive with RAID: btrfs RAID vs built-in RAIDInvalid SAS topologyDoes enabling JBOD mode on LSI based controllers affect existing logical disks/arrays?Why is there a shift between the WWN reported from the controller and the Linux system?Optimal RAID 6+0 Setup for 40+ 4TB DisksAccidental SAS cable removal

          Куамањотепек (Чилапа де Алварез) Садржај Становништво Види још Референце Спољашње везе Мени за навигацију17°19′47″N 99°1′51″W / 17.32972° СГШ; 99.03083° ЗГД / 17.32972; -99.0308317°19′47″N 99°1′51″W / 17.32972° СГШ; 99.03083° ЗГД / 17.32972; -99.030838877656„Instituto Nacional de Estadística y Geografía”„The GeoNames geographical database”Мексичка насељапроширитиуу

          Срби Садржај Географија Етимологија Генетика Историја Језик Религија Популација Познати Срби Види још Напомене Референце Извори Литература Спољашње везе Мени за навигацијууrs.one.un.orgАрхивираноАрхивирано из оригиналаПопис становништва из 2011. годинеCOMMUNITY PROFILE: SERB COMMUNITY„1996 population census in Bosnia and Herzegovina”„CIA - The World Factbook - Bosnia and Herzegovina”American FactFinder - Results„2011 National Household Survey: Data tables”„Srbi u Nemačkoj | Srbi u Njemačkoj | Zentralrat der Serben in Deutschland”оригинала„Vesti online - Srpski informativni portal”„The Serbian Diaspora and Youth: Cross-Border Ties and Opportunities for Development”оригиналаSerben-Demo eskaliert in Wien„The People of Australia – Statistics from the 2011 Census”„Erstmals über eine Million EU- und EFTA Angehörige in der Schweiz”STANOVNIŠTVO PREMA NARODNOSTI – DETALJNA KLASIFIKACIJA – POPIS 2011.(Завод за статистику Црне Горе)title=Présentation de la République de SerbieSerbian | EthnologuePopulation by ethnic affiliation, Slovenia, Census 1953, 1961, 1971, 1981, 1991 and 2002Попис на населението, домаќинствата и становите во Република Македонија, 2002: Дефинитивни податоциALBANIJA ETNIČKI ČISTI SRBE: Iščezlo 100.000 ljudi pokrštavanjem, kao što su to radile ustaše u NDH! | Telegraf – Najnovije vestiИз удаљене Аргентине„Tab11. Populaţia stabilă după etnie şi limba maternă, pe categorii de localităţi”Суседи броје Србе„Srpska Dijaspora”оригиналаMinifacts about Norway 2012„Statistiques - 01.06.2008”ПРЕДСЕДНИК СРБИЈЕ СА СРБИМА У БРАТИСЛАВИСлавка Драшковић: Многа питања Срба у Црној Гори нерешенаThe Spread of the SlavesGoogle Book„Distribution of European Y-chromosome DNA (Y-DNA) haplogroups by country in percentage”American Journal of Physical Anthropology 142:380–390 (2010)„Архивирана копија”оригинала„Haplogroup I2 (Y-DNA)”„Архивирана копија”оригиналаVTS 01 1 - YouTubeПрви сукоби Срба и Турака - Политикин забавникАрхивираноConstantine Porphyrogenitus: De Administrando ImperioВизантиски извори за историју народа ЈугославијеDe conversione Croatorum et Serborum: A Lost SourceDe conversione Croatorum et Serborum: Изгубљени извор Константина ПорфирогенитаИсторија српске државностиИсторија српског народаСрбофобија и њени извориСерска област после Душанове смртиИсторија ВизантијеИсторија средњовековне босанске државеСрби међу европским народимаСрби у средњем векуМедијиПодациууууу00577267