How to add Active Directory users as sudoers
I'm following this article. What I've done:
- I can connect to Active Directory
- I can login to the Active Directory
Now what I'm looking for is a way to make any active directory user a sudoer. I'm using Ubuntu 14.04 and Active Directory 2008r2
sudo configuration active-directory
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm following this article. What I've done:
- I can connect to Active Directory
- I can login to the Active Directory
Now what I'm looking for is a way to make any active directory user a sudoer. I'm using Ubuntu 14.04 and Active Directory 2008r2
sudo configuration active-directory
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm following this article. What I've done:
- I can connect to Active Directory
- I can login to the Active Directory
Now what I'm looking for is a way to make any active directory user a sudoer. I'm using Ubuntu 14.04 and Active Directory 2008r2
sudo configuration active-directory
I'm following this article. What I've done:
- I can connect to Active Directory
- I can login to the Active Directory
Now what I'm looking for is a way to make any active directory user a sudoer. I'm using Ubuntu 14.04 and Active Directory 2008r2
sudo configuration active-directory
sudo configuration active-directory
edited Apr 25 '14 at 15:35
karel
59.2k13128151
59.2k13128151
asked Apr 25 '14 at 15:27
PedroPedro
10816
10816
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
For sudoers file:
In a terminal type:
sudo visudo
and got to line
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
add your domain like this:
%domain\domain^Users ALL=(ALL) ALL
but I advice you to use the LikewiseOpen
Better edit /etc/sudoers withvisudo
, it checks if the syntax is right before saving.
– Pabi
Jul 14 '14 at 9:50
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f455265%2fhow-to-add-active-directory-users-as-sudoers%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
For sudoers file:
In a terminal type:
sudo visudo
and got to line
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
add your domain like this:
%domain\domain^Users ALL=(ALL) ALL
but I advice you to use the LikewiseOpen
Better edit /etc/sudoers withvisudo
, it checks if the syntax is right before saving.
– Pabi
Jul 14 '14 at 9:50
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
add a comment |
For sudoers file:
In a terminal type:
sudo visudo
and got to line
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
add your domain like this:
%domain\domain^Users ALL=(ALL) ALL
but I advice you to use the LikewiseOpen
Better edit /etc/sudoers withvisudo
, it checks if the syntax is right before saving.
– Pabi
Jul 14 '14 at 9:50
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
add a comment |
For sudoers file:
In a terminal type:
sudo visudo
and got to line
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
add your domain like this:
%domain\domain^Users ALL=(ALL) ALL
but I advice you to use the LikewiseOpen
For sudoers file:
In a terminal type:
sudo visudo
and got to line
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
add your domain like this:
%domain\domain^Users ALL=(ALL) ALL
but I advice you to use the LikewiseOpen
edited Jul 14 '14 at 10:02
Community♦
1
1
answered Jul 14 '14 at 9:46
ahmed samiahmed sami
363
363
Better edit /etc/sudoers withvisudo
, it checks if the syntax is right before saving.
– Pabi
Jul 14 '14 at 9:50
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
add a comment |
Better edit /etc/sudoers withvisudo
, it checks if the syntax is right before saving.
– Pabi
Jul 14 '14 at 9:50
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
Better edit /etc/sudoers with
visudo
, it checks if the syntax is right before saving.– Pabi
Jul 14 '14 at 9:50
Better edit /etc/sudoers with
visudo
, it checks if the syntax is right before saving.– Pabi
Jul 14 '14 at 9:50
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
any way i used to nano .
– ahmed sami
Jul 14 '14 at 9:53
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
@ahmedsami that's okay. You can set the EDITOR environment variable to nano. Then commands like visudo will use that editor.
– muru
Jul 14 '14 at 10:00
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f455265%2fhow-to-add-active-directory-users-as-sudoers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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