What is each group's permissions, and what is the “ranking” of each group (most privileged to least)?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0














I'm asking about who inherits permissions from who, along with any additional permissions for the group as well?



For example: "nogroup - no permissions,...(Insert other groups here)..., wheel - inherits from nogroup, (Insert other groups here),...(any "higher up" groups continue on).










share|improve this question























  • you are confusing groups with privilege elevation. Groups do not inherit right from one another. Users obtain rights of the group that they are a member of and these rights are are generally for file and folder access. I think you have something else on your mind. But unless you can clearly state "rights for what" nobody can help you. Are you interested in sudo rights or something similar ?
    – MelBurslan
    Mar 2 '16 at 22:33















0














I'm asking about who inherits permissions from who, along with any additional permissions for the group as well?



For example: "nogroup - no permissions,...(Insert other groups here)..., wheel - inherits from nogroup, (Insert other groups here),...(any "higher up" groups continue on).










share|improve this question























  • you are confusing groups with privilege elevation. Groups do not inherit right from one another. Users obtain rights of the group that they are a member of and these rights are are generally for file and folder access. I think you have something else on your mind. But unless you can clearly state "rights for what" nobody can help you. Are you interested in sudo rights or something similar ?
    – MelBurslan
    Mar 2 '16 at 22:33













0












0








0







I'm asking about who inherits permissions from who, along with any additional permissions for the group as well?



For example: "nogroup - no permissions,...(Insert other groups here)..., wheel - inherits from nogroup, (Insert other groups here),...(any "higher up" groups continue on).










share|improve this question















I'm asking about who inherits permissions from who, along with any additional permissions for the group as well?



For example: "nogroup - no permissions,...(Insert other groups here)..., wheel - inherits from nogroup, (Insert other groups here),...(any "higher up" groups continue on).







ubuntu permissions freebsd group






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 20 '18 at 7:26









Rui F Ribeiro

39k1479130




39k1479130










asked Mar 2 '16 at 22:22









superuser1995

31




31











  • you are confusing groups with privilege elevation. Groups do not inherit right from one another. Users obtain rights of the group that they are a member of and these rights are are generally for file and folder access. I think you have something else on your mind. But unless you can clearly state "rights for what" nobody can help you. Are you interested in sudo rights or something similar ?
    – MelBurslan
    Mar 2 '16 at 22:33
















  • you are confusing groups with privilege elevation. Groups do not inherit right from one another. Users obtain rights of the group that they are a member of and these rights are are generally for file and folder access. I think you have something else on your mind. But unless you can clearly state "rights for what" nobody can help you. Are you interested in sudo rights or something similar ?
    – MelBurslan
    Mar 2 '16 at 22:33















you are confusing groups with privilege elevation. Groups do not inherit right from one another. Users obtain rights of the group that they are a member of and these rights are are generally for file and folder access. I think you have something else on your mind. But unless you can clearly state "rights for what" nobody can help you. Are you interested in sudo rights or something similar ?
– MelBurslan
Mar 2 '16 at 22:33




you are confusing groups with privilege elevation. Groups do not inherit right from one another. Users obtain rights of the group that they are a member of and these rights are are generally for file and folder access. I think you have something else on your mind. But unless you can clearly state "rights for what" nobody can help you. Are you interested in sudo rights or something similar ?
– MelBurslan
Mar 2 '16 at 22:33










1 Answer
1






active

oldest

votes


















0














There is no ranking or inheritance between groups. All groups are on an equal footing (or to be more precise, mathematically speaking, the privileges of groups are incomparable).



Groups confer privileges indirectly. This happens mainly through file permissions (which make members of a certain group able to access a file, or more rarely unable to access a file). This also happens when programs check group memberships, for example via %group user specifications in the sudo configuration.






share|improve this answer




















  • So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
    – superuser1995
    Mar 3 '16 at 5:11










  • Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
    – Gilles
    Mar 3 '16 at 10:42










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%2f267193%2fwhat-is-each-groups-permissions-and-what-is-the-ranking-of-each-group-most%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














There is no ranking or inheritance between groups. All groups are on an equal footing (or to be more precise, mathematically speaking, the privileges of groups are incomparable).



Groups confer privileges indirectly. This happens mainly through file permissions (which make members of a certain group able to access a file, or more rarely unable to access a file). This also happens when programs check group memberships, for example via %group user specifications in the sudo configuration.






share|improve this answer




















  • So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
    – superuser1995
    Mar 3 '16 at 5:11










  • Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
    – Gilles
    Mar 3 '16 at 10:42















0














There is no ranking or inheritance between groups. All groups are on an equal footing (or to be more precise, mathematically speaking, the privileges of groups are incomparable).



Groups confer privileges indirectly. This happens mainly through file permissions (which make members of a certain group able to access a file, or more rarely unable to access a file). This also happens when programs check group memberships, for example via %group user specifications in the sudo configuration.






share|improve this answer




















  • So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
    – superuser1995
    Mar 3 '16 at 5:11










  • Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
    – Gilles
    Mar 3 '16 at 10:42













0












0








0






There is no ranking or inheritance between groups. All groups are on an equal footing (or to be more precise, mathematically speaking, the privileges of groups are incomparable).



Groups confer privileges indirectly. This happens mainly through file permissions (which make members of a certain group able to access a file, or more rarely unable to access a file). This also happens when programs check group memberships, for example via %group user specifications in the sudo configuration.






share|improve this answer












There is no ranking or inheritance between groups. All groups are on an equal footing (or to be more precise, mathematically speaking, the privileges of groups are incomparable).



Groups confer privileges indirectly. This happens mainly through file permissions (which make members of a certain group able to access a file, or more rarely unable to access a file). This also happens when programs check group memberships, for example via %group user specifications in the sudo configuration.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 3 '16 at 0:13









Gilles

528k12810581583




528k12810581583











  • So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
    – superuser1995
    Mar 3 '16 at 5:11










  • Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
    – Gilles
    Mar 3 '16 at 10:42
















  • So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
    – superuser1995
    Mar 3 '16 at 5:11










  • Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
    – Gilles
    Mar 3 '16 at 10:42















So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
– superuser1995
Mar 3 '16 at 5:11




So, being part of a group will allow you to get those specific permissions (ex: being part of ftp allows you to connect via ftp, sshd group - you can ssh into your box or whatever)? What about the difference between admin and wheel?
– superuser1995
Mar 3 '16 at 5:11












Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
– Gilles
Mar 3 '16 at 10:42




Group names are not standardized, but generally, you don't need to be a member of a group to use SSH or FTP. The sshd group is normally used for internal purposes by the SSH server. I think the ftp group is usually used for anonymous FTP. Ubuntu has a group called admin whose users are allowed to become root via sudo. The wheel group has its own diverse history; there are systems where su checks (user is in wheel OR knows the root password), systems where it checks (user is in wheel AND knows the root password) and systems (e.g. most Linux distros) where wheel has no meaning.
– Gilles
Mar 3 '16 at 10:42

















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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2f267193%2fwhat-is-each-groups-permissions-and-what-is-the-ranking-of-each-group-most%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 check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay