Linux帳號管理 下 使用者組管理

2021-06-09 17:21:59 字數 1858 閱讀 1298

摘要:本文簡要介紹了linux帳號管理的使用者組管理。

linux: ubuntu10.0.4

1.新增使用者組:groupadd

usage: groupadd [options]

options:

-f, --force                   exit successfully if the group already exists,

and cancel -g if the gid is already used

-g, --gid gid                 use gid for the new group

-h, --help                    display this help message and exit

-k, --key key=value           override /etc/login.defs defaults

-o, --non-unique              allow to create groups with duplicate

(non-unique) gid

-p, --password password       use this encrypted password for the new group

-r, --system                  create a system account

2.修改使用者組:groupmod

usage: groupmod [options]

options:

-g, --gid gid                 change the group id to gid

-h, --help                    display this help message and exit

-n, --new-name new_group      change the name to new_group

-o, --non-unique              allow to use a duplicate (non-unique) gid

-p, --password password       change the password to this (encrypted)

password

3.刪除使用者組:groupdel

用法:groupdel 組

4.使用者組管理員:gpasswd

usage: gpasswd [option]

options:

-a, --add user                add user to group

-d, --delete user             remove user from group

-r, --remove-password         remove the group's password

-r, --restrict                restrict access to group to its members

-m, --members user,...        set the list of members of group

-a, --administrators admin,...

set the list of administrators for group

except for the -a and -m options, the options cannot be combined.

5.檢視有效使用者組:groups

fans adm dialout fax cdrom

6.切換有效使用者組:newgrp

Linux下使用者 組的管理

對於linux下使用者 組的管理機制,以前有個大概的認識,沒有進行相關方面的實際操作。今天懷疑乙個執行命令的問題是因為sudo產生的,就對這方面的知識進行了學習。b linux 使用者 user 和使用者組 group 管理概述 b url b useradd和groupadd的簡單例項 b gro...

linux 使用者 組管理

linux 系統是乙個多使用者多工的分時作業系統,任何乙個要使用系統資源的使用者,都必須首先向系統管理員申請乙個賬號,然後以這個賬號的身份進入系統。使用者的賬號 一方面可以幫助系統管理員對使用系統的使用者進行跟蹤,並控制他們對系統資源的訪問 另一方面也可以幫助使用者組織檔案,並為使用者提供安全性保護...

Linux使用者組管理

使用者組資訊存放 etc group 當組內只有乙個使用者,並且使用者名稱和使用者組名一致時預設不顯示 組號1 499是系統預留的使用者組,500的使用者組是管理員手動建立的,組密碼佔位符用x表示 組密碼配置檔案 etc gshadow 也是四段存放的,乙個 代表組密碼為空,比如ssh免密登入後就為...