How to remove unwanted Windows domain accounts and local account from Linux Mint 17 login screen?












2















I added Linux mint 17 as a member of Windows 2008R2 domain controller. When I login to my domain account and switch user, I see a bunch of unwanted domain accounts and local machine accounts. I need to know how to remove these unwanted accounts. Here's a list of the accounts I see on the login screen:




  • mydomainadministrator

  • mydomainguest # this account is disabled on the domain however it's still showing up

  • mydomainkrbtgt # not sure what to do with this one

  • hostnameAdministrator # need to remove this one, not sure why I have
    two of them

  • hostnameGuest # need to remove this one

  • Administrator # need this one for local administration


I am not sure if I have to edit and exclude them from /etc/mdm/mdm.conf. I forgot to mention that I am not using simple GDM style. I am using simple UserList GDM.










share|improve this question

























  • How did you join the domain?

    – Braiam
    Aug 20 '14 at 16:35











  • I used likewise-open and executed domainjoincli command. It's working fine with single UserInterface but not with single UserList. I need to modify this list but I don't know how.

    – c0ldhand
    Aug 20 '14 at 17:26











  • Could you not use this method? askubuntu.com/questions/170325/…

    – slm
    Aug 21 '14 at 8:57
















2















I added Linux mint 17 as a member of Windows 2008R2 domain controller. When I login to my domain account and switch user, I see a bunch of unwanted domain accounts and local machine accounts. I need to know how to remove these unwanted accounts. Here's a list of the accounts I see on the login screen:




  • mydomainadministrator

  • mydomainguest # this account is disabled on the domain however it's still showing up

  • mydomainkrbtgt # not sure what to do with this one

  • hostnameAdministrator # need to remove this one, not sure why I have
    two of them

  • hostnameGuest # need to remove this one

  • Administrator # need this one for local administration


I am not sure if I have to edit and exclude them from /etc/mdm/mdm.conf. I forgot to mention that I am not using simple GDM style. I am using simple UserList GDM.










share|improve this question

























  • How did you join the domain?

    – Braiam
    Aug 20 '14 at 16:35











  • I used likewise-open and executed domainjoincli command. It's working fine with single UserInterface but not with single UserList. I need to modify this list but I don't know how.

    – c0ldhand
    Aug 20 '14 at 17:26











  • Could you not use this method? askubuntu.com/questions/170325/…

    – slm
    Aug 21 '14 at 8:57














2












2








2








I added Linux mint 17 as a member of Windows 2008R2 domain controller. When I login to my domain account and switch user, I see a bunch of unwanted domain accounts and local machine accounts. I need to know how to remove these unwanted accounts. Here's a list of the accounts I see on the login screen:




  • mydomainadministrator

  • mydomainguest # this account is disabled on the domain however it's still showing up

  • mydomainkrbtgt # not sure what to do with this one

  • hostnameAdministrator # need to remove this one, not sure why I have
    two of them

  • hostnameGuest # need to remove this one

  • Administrator # need this one for local administration


I am not sure if I have to edit and exclude them from /etc/mdm/mdm.conf. I forgot to mention that I am not using simple GDM style. I am using simple UserList GDM.










share|improve this question
















I added Linux mint 17 as a member of Windows 2008R2 domain controller. When I login to my domain account and switch user, I see a bunch of unwanted domain accounts and local machine accounts. I need to know how to remove these unwanted accounts. Here's a list of the accounts I see on the login screen:




  • mydomainadministrator

  • mydomainguest # this account is disabled on the domain however it's still showing up

  • mydomainkrbtgt # not sure what to do with this one

  • hostnameAdministrator # need to remove this one, not sure why I have
    two of them

  • hostnameGuest # need to remove this one

  • Administrator # need this one for local administration


I am not sure if I have to edit and exclude them from /etc/mdm/mdm.conf. I forgot to mention that I am not using simple GDM style. I am using simple UserList GDM.







linux-mint windows domain






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 22:05









Rui F Ribeiro

41.5k1483141




41.5k1483141










asked Aug 20 '14 at 16:07









c0ldhandc0ldhand

214




214













  • How did you join the domain?

    – Braiam
    Aug 20 '14 at 16:35











  • I used likewise-open and executed domainjoincli command. It's working fine with single UserInterface but not with single UserList. I need to modify this list but I don't know how.

    – c0ldhand
    Aug 20 '14 at 17:26











  • Could you not use this method? askubuntu.com/questions/170325/…

    – slm
    Aug 21 '14 at 8:57



















  • How did you join the domain?

    – Braiam
    Aug 20 '14 at 16:35











  • I used likewise-open and executed domainjoincli command. It's working fine with single UserInterface but not with single UserList. I need to modify this list but I don't know how.

    – c0ldhand
    Aug 20 '14 at 17:26











  • Could you not use this method? askubuntu.com/questions/170325/…

    – slm
    Aug 21 '14 at 8:57

















How did you join the domain?

– Braiam
Aug 20 '14 at 16:35





How did you join the domain?

– Braiam
Aug 20 '14 at 16:35













I used likewise-open and executed domainjoincli command. It's working fine with single UserInterface but not with single UserList. I need to modify this list but I don't know how.

– c0ldhand
Aug 20 '14 at 17:26





I used likewise-open and executed domainjoincli command. It's working fine with single UserInterface but not with single UserList. I need to modify this list but I don't know how.

– c0ldhand
Aug 20 '14 at 17:26













Could you not use this method? askubuntu.com/questions/170325/…

– slm
Aug 21 '14 at 8:57





Could you not use this method? askubuntu.com/questions/170325/…

– slm
Aug 21 '14 at 8:57










1 Answer
1






active

oldest

votes


















0














I found this Q&A on AU that sounds like what you're looking for. It's titled: How to hide users from the GDM login screen?. There are several answers, but one in particular sounded the most promising.



This one involved editing the schema file, /etc/gdm/gdm.schema and changing this section:



(original)

 <schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>true</default>
</schema>


(after my edit)

<schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>false</default>
</schema>


This has the effect of turning all user-listing off.






share|improve this answer


























  • I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

    – c0ldhand
    Aug 22 '14 at 20:26











  • Are you using Mate or Cinnamon?

    – slm
    Aug 22 '14 at 20:56











  • Mint 17 mate. What difference does it make?.

    – c0ldhand
    Aug 23 '14 at 20:43











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f151198%2fhow-to-remove-unwanted-windows-domain-accounts-and-local-account-from-linux-mint%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














I found this Q&A on AU that sounds like what you're looking for. It's titled: How to hide users from the GDM login screen?. There are several answers, but one in particular sounded the most promising.



This one involved editing the schema file, /etc/gdm/gdm.schema and changing this section:



(original)

 <schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>true</default>
</schema>


(after my edit)

<schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>false</default>
</schema>


This has the effect of turning all user-listing off.






share|improve this answer


























  • I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

    – c0ldhand
    Aug 22 '14 at 20:26











  • Are you using Mate or Cinnamon?

    – slm
    Aug 22 '14 at 20:56











  • Mint 17 mate. What difference does it make?.

    – c0ldhand
    Aug 23 '14 at 20:43
















0














I found this Q&A on AU that sounds like what you're looking for. It's titled: How to hide users from the GDM login screen?. There are several answers, but one in particular sounded the most promising.



This one involved editing the schema file, /etc/gdm/gdm.schema and changing this section:



(original)

 <schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>true</default>
</schema>


(after my edit)

<schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>false</default>
</schema>


This has the effect of turning all user-listing off.






share|improve this answer


























  • I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

    – c0ldhand
    Aug 22 '14 at 20:26











  • Are you using Mate or Cinnamon?

    – slm
    Aug 22 '14 at 20:56











  • Mint 17 mate. What difference does it make?.

    – c0ldhand
    Aug 23 '14 at 20:43














0












0








0







I found this Q&A on AU that sounds like what you're looking for. It's titled: How to hide users from the GDM login screen?. There are several answers, but one in particular sounded the most promising.



This one involved editing the schema file, /etc/gdm/gdm.schema and changing this section:



(original)

 <schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>true</default>
</schema>


(after my edit)

<schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>false</default>
</schema>


This has the effect of turning all user-listing off.






share|improve this answer















I found this Q&A on AU that sounds like what you're looking for. It's titled: How to hide users from the GDM login screen?. There are several answers, but one in particular sounded the most promising.



This one involved editing the schema file, /etc/gdm/gdm.schema and changing this section:



(original)

 <schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>true</default>
</schema>


(after my edit)

<schema>
<key>greeter/IncludeAll</key>
<signature>b</signature>
<default>false</default>
</schema>


This has the effect of turning all user-listing off.







share|improve this answer














share|improve this answer



share|improve this answer








edited Apr 13 '17 at 12:22









Community

1




1










answered Aug 21 '14 at 9:43









slmslm

254k71537687




254k71537687













  • I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

    – c0ldhand
    Aug 22 '14 at 20:26











  • Are you using Mate or Cinnamon?

    – slm
    Aug 22 '14 at 20:56











  • Mint 17 mate. What difference does it make?.

    – c0ldhand
    Aug 23 '14 at 20:43



















  • I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

    – c0ldhand
    Aug 22 '14 at 20:26











  • Are you using Mate or Cinnamon?

    – slm
    Aug 22 '14 at 20:56











  • Mint 17 mate. What difference does it make?.

    – c0ldhand
    Aug 23 '14 at 20:43

















I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

– c0ldhand
Aug 22 '14 at 20:26





I am using Linux Mint 17 with GDM but I don't have /etc/gdm/. Not sure why?!.

– c0ldhand
Aug 22 '14 at 20:26













Are you using Mate or Cinnamon?

– slm
Aug 22 '14 at 20:56





Are you using Mate or Cinnamon?

– slm
Aug 22 '14 at 20:56













Mint 17 mate. What difference does it make?.

– c0ldhand
Aug 23 '14 at 20:43





Mint 17 mate. What difference does it make?.

– c0ldhand
Aug 23 '14 at 20:43


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • 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%2funix.stackexchange.com%2fquestions%2f151198%2fhow-to-remove-unwanted-windows-domain-accounts-and-local-account-from-linux-mint%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 reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

is 'sed' thread safe

How to make a Squid Proxy server?