{"id":73,"date":"2018-11-29T17:53:58","date_gmt":"2018-11-30T00:53:58","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=73"},"modified":"2020-02-04T18:03:28","modified_gmt":"2020-02-05T02:03:28","slug":"add-ubuntu-windows-domain","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/","title":{"rendered":"Adding Ubuntu to a Windows Domain"},"content":{"rendered":"\n<p>While, to be fair, there is documentation on this process, I&#8217;ve found that it tends to not really&#8230; work. So I&#8217;m throwing in my attempt at documenting how to add various Linux flavors to an Active Directory Domain, with massive research assistance from <a href=\"https:\/\/angrysysadmins.tech\/index.php\/author\/robert\/\">Rob<\/a>.<br><br>Right off the bat, I assume that the domain exists, that the Linux box is on the same network as the AD Controller, and that the AD Controller is also serving DNS. With that said, let us begin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Windows Part<\/h2>\n\n\n\n<p>Double check your hostname, domain, and workgroup. Workgroup is found when you login, the shorthand of your domain before your user name. Domain and hostname can be found by right-clicking This PC and selecting &#8220;Properties.&#8221; You have something like this:<br><br><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"314\" height=\"289\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png\" alt=\"\" class=\"wp-image-407\" srcset=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png 314w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP-300x276.png 300w\" sizes=\"auto, (max-width: 314px) 100vw, 314px\" \/><\/figure><\/div>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"306\" height=\"138\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/DOMAINandHOST.png\" alt=\"\" class=\"wp-image-408\" srcset=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/DOMAINandHOST.png 306w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/DOMAINandHOST-300x135.png 300w\" sizes=\"auto, (max-width: 306px) 100vw, 306px\" \/><\/figure>\n\n\n\n<p><br><br>So my workgroup is PERIODIC, hostname is nitrogen, and domain is periodic.table. This will be needed later.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ubuntu<\/h2>\n\n\n\n<p>First off is a few installs.<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install samba krb5-config krb5-user winbind libnss-winbind libpam-winbind<\/pre>\n\n\n\n<p><br>With those in place, we have some config changes to make. Let&#8217;s start off with the easiest one, hosts. This will make it so that even if DNS goes down for some reason, Ubuntu will still resolve at least the AD hostname:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">127.0.0.1 localhost<br>$linux_ip$ $linux_hostname$.$domain$  $linux_hostname$<br>$ad_ip$  $ad_hostname$.$domain$ $ad_hostname$<\/pre>\n\n\n\n<p><br>Next is to set DNS to resolve from AD. This can be done a few ways, so I won&#8217;t really cover it aside from saying that for me it is an extra line in <code>\/etc\/network\/interfaces<\/code> in the block where I set a static IP. On Ubuntu 18, it will probably be under <code>\/etc\/netplan<\/code>.<br><br>Now that we are resolving DNS from Windows, we can setup <a href=\"https:\/\/web.mit.edu\/kerberos\/\">Kerberos<\/a>. This is the part where most people will make mistakes, but the worst thing that will happen is it doesn&#8217;t work. Nothing should break.&nbsp;<code>\/etc\/krb5.conf<\/code>:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[libdefaults]<br>    default_realm = $DOMAIN$<br><br>[realms]<br>    $DOMAIN$ = {<br>        kdc = $AD_HOSTNAME$.$DOMAIN$<br>        default_domain = $DOMAIN$<br>    }<br><br>[domain_realm]<br>    .$domain$ = .$DOMAIN$<br>    $domain$ = $DOMAIN$<\/pre>\n\n\n\n<p><br>The caps are important, make sure to match them. This is a very basic config, it can easily get more complex.<br><br>There are a couple changes that need to be made in&nbsp;<code>\/etc\/samba\/smb.conf<\/code>. We&#8217;re not setting up a share, but we do need to tell it about the realm. Make sure that these variables are set in <a href=\"https:\/\/www.samba.org\/\">Samba&#8217;s<\/a> config file:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">workgroup = $WORKGROUP$\nnetbios name = $LINUX_HOSTNAME$\nrealm = $DOMAIN$\nserver string =\nsecurity = ads\nencrypt passwords = yes\npassword server = $AD_HOSTNAME$.$DOMAIN$\nlog file = \/var\/log\/samba\/%m.log\nmax log size = 50\nsocket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192\npreferred master = False\nlocal master = No\ndomain master = No\ndns proxy = No\nidmap uid = 10000-20000\nidmap gid = 10000-20000\nwinbind enum users = yes\nwinbind enum groups = yes\nwinbind use default domain = yes\nclient use spnego = yes\ntemplate shell = \/bin\/bash\ntemplate homedir  = \/home\/%U<\/pre>\n\n\n\n<p><br>The <code>template shell<\/code> section will be the default shell of users added via Samba, which can be any shell installed on the system (bash, zsh, sh, etc). <code>template homedir<\/code> is the default home folder of the new users. To have them be made in a folder for the domain, you can change it to: <code>template homedir = \/home\/%D\/%U<\/code>. Now enable and restart Samba:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl enable smbd.service<br>sudo systemctl restart smbd<\/pre>\n\n\n\n<p><br>And finally, we can attempt to join the domain.<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo net ads join -S $AD_HOSTNAME$.$DOMAIN$ -U Administrator<\/pre>\n\n\n\n<p><br>Theoretically, you are now joined to AD. Restart winbind and run <code>wbinfo<\/code> to confirm:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl enable winbind<br>sudo systemctl restart winbind<br>sudo wbinfo -u<\/pre>\n\n\n\n<p><br><br>Now that we are joined to the domain, we will need to edit nsswitch.conf to allow authentication to work. At this point, Ubuntu&#8217;s hostname should be listed under <code>Users and Computers<\/code> in Active Directory. The top of <code>\/etc\/nsswitch.conf<\/code> should roughly match the following:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">passwd:   compat winbind<br>group:    compat winbind<br>shadow:   compat winbind<br>gshadow:  files<br>hosts:    files dns<\/pre>\n\n\n\n<p><br><br>You can confirm that authentication is working by signing into an AD account, or by running <code>getent passwd<\/code> and seeing if the new users have been added. While authenticating should work, the default shell should be set to <code>\/bin\/false<\/code>. Settings policies that control default shell and home folder are dependent upon AD configuration. The article <a href=\"https:\/\/wiki.samba.org\/index.php\/Idmap_config_ad\">here<\/a> details how to handle this.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here&#8217;s my attempt at making a tutorial on how to do this. With help from Rob.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,8,35,3],"tags":[30,31,33,6,34,29,104,5],"coauthors":[37,36],"class_list":["post-73","post","type-post","status-publish","format-standard","hentry","category-active-directory","category-linux","category-ubuntu","category-windows","tag-active-directory","tag-authentication","tag-kerberos","tag-linux","tag-nsswitch","tag-samba","tag-winbind","tag-windows"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding Ubuntu to a Windows Domain - Angry Sysadmins<\/title>\n<meta name=\"description\" content=\"There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here&#039;s my attempt at one. With help from Rob.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding Ubuntu to a Windows Domain - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here&#039;s my attempt at one. With help from Rob.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2018-11-30T00:53:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-05T02:03:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png\" \/>\n<meta name=\"author\" content=\"Cat Kasin, Rob Hancock\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Cat Kasin, Rob Hancock\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/\"},\"author\":{\"name\":\"Cat Kasin\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/151b2d23439b55b970060836f317a14d\"},\"headline\":\"Adding Ubuntu to a Windows Domain\",\"datePublished\":\"2018-11-30T00:53:58+00:00\",\"dateModified\":\"2020-02-05T02:03:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/\"},\"wordCount\":528,\"commentCount\":19,\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/WORKGROUP.png\",\"keywords\":[\"Active Directory\",\"Authentication\",\"Kerberos\",\"Linux\",\"nsswitch\",\"Samba\",\"winbind\",\"Windows\"],\"articleSection\":[\"Active Directory\",\"Linux\",\"Ubuntu\",\"Windows\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/\",\"name\":\"Adding Ubuntu to a Windows Domain - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/WORKGROUP.png\",\"datePublished\":\"2018-11-30T00:53:58+00:00\",\"dateModified\":\"2020-02-05T02:03:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/151b2d23439b55b970060836f317a14d\"},\"description\":\"There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here's my attempt at one. With help from Rob.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#primaryimage\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/WORKGROUP.png\",\"contentUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/WORKGROUP.png\",\"width\":314,\"height\":289},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2018\\\/11\\\/bailey\\\/add-ubuntu-windows-domain\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding Ubuntu to a Windows Domain\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/\",\"name\":\"Angry Sysadmins\",\"description\":\"A site full of angry sysadmins here to vent and help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/angrysysadmins.tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/151b2d23439b55b970060836f317a14d\",\"name\":\"Cat Kasin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g23b0ffb86dd6c08514a66a6a50f7a0a9\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g\",\"caption\":\"Cat Kasin\"},\"description\":\"I build virtual environments and challenges for Cybersecurity students to complete as a way to gain experience before graduating and entering the workforce.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/bailey\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding Ubuntu to a Windows Domain - Angry Sysadmins","description":"There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here's my attempt at one. With help from Rob.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/","og_locale":"en_US","og_type":"article","og_title":"Adding Ubuntu to a Windows Domain - Angry Sysadmins","og_description":"There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here's my attempt at one. With help from Rob.","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/","og_site_name":"Angry Sysadmins","article_published_time":"2018-11-30T00:53:58+00:00","article_modified_time":"2020-02-05T02:03:28+00:00","og_image":[{"url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png","type":"","width":"","height":""}],"author":"Cat Kasin, Rob Hancock","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Cat Kasin, Rob Hancock","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/"},"author":{"name":"Cat Kasin","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/151b2d23439b55b970060836f317a14d"},"headline":"Adding Ubuntu to a Windows Domain","datePublished":"2018-11-30T00:53:58+00:00","dateModified":"2020-02-05T02:03:28+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/"},"wordCount":528,"commentCount":19,"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png","keywords":["Active Directory","Authentication","Kerberos","Linux","nsswitch","Samba","winbind","Windows"],"articleSection":["Active Directory","Linux","Ubuntu","Windows"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/","name":"Adding Ubuntu to a Windows Domain - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#primaryimage"},"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png","datePublished":"2018-11-30T00:53:58+00:00","dateModified":"2020-02-05T02:03:28+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/151b2d23439b55b970060836f317a14d"},"description":"There are many guides on the process of adding Ubuntu to a Windows Domain. None really worked for me, so here's my attempt at one. With help from Rob.","breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#primaryimage","url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png","contentUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2019\/02\/WORKGROUP.png","width":314,"height":289},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2018\/11\/bailey\/add-ubuntu-windows-domain\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"Adding Ubuntu to a Windows Domain"}]},{"@type":"WebSite","@id":"https:\/\/angrysysadmins.tech\/#website","url":"https:\/\/angrysysadmins.tech\/","name":"Angry Sysadmins","description":"A site full of angry sysadmins here to vent and help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/angrysysadmins.tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/151b2d23439b55b970060836f317a14d","name":"Cat Kasin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g23b0ffb86dd6c08514a66a6a50f7a0a9","url":"https:\/\/secure.gravatar.com\/avatar\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g","caption":"Cat Kasin"},"description":"I build virtual environments and challenges for Cybersecurity students to complete as a way to gain experience before graduating and entering the workforce.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/bailey\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/73","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=73"}],"version-history":[{"count":22,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/73\/revisions"}],"predecessor-version":[{"id":808,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/73\/revisions\/808"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=73"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=73"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=73"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=73"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}