Linux帳號管理 中 使用者管理

2021-06-09 17:21:59 字數 1778 閱讀 3468

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

linux: ubuntu10.0.4

1.系統管理員功能

1.1新建使用者:useradd

usage: useradd [options]

1.2修改使用者:usermod

usage: usermod [options]

1.3刪除使用者:userdel

usage: userdel [options]

options:

-f, --force                   force removal of files,

even if not owned by user

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

-r, --remove                  remove home directory and mail spool

1.4設定密碼:passwd

1.5詳細密碼設定:chage

usage: chage [options] [login]

options:

-d, --lastday last_day        set date of last password change to last_day

-e, --expiredate expire_date  set account expiration date to expire_date

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

-i, --inactive inactive       set password inactive after expiration

to inactive

-l, --list                    show account aging information

-m, --mindays min_days        set minimum number of days before password

change to min_days

-m, --maxdays max_days        set maximim number of days before password

change to max_days

-w, --warndays warn_days      set expiration warning days to warn_days

2.普通使用者功能

2.1finger

login     name       tty      idle  login time   office     office phone

fans      fans       tty7     6:22  jun 21 09:40 (:0)

fans      fans       pts/0          jun 21 15:54 (:0.0)

2.2chfn

2.3chsh

2.4id

uid=1000(fans) gid=1000(fans) 組=4(adm),20(dialout),21(fax),24(cdrom),25(floppy),26(tape),30(dip),44(video),46(plugdev),104(fuse),105(lpadmin),119(admin),121(nopasswdlogin),122(sambashare),1000(fans)

linux中使用者管理

使用者就是系統使用者的身份,在系統中使用者儲存為若干竄字元 若干個系統配置檔案 使用者資訊涉及到的系統配置檔案 etc passwd 使用者資訊 使用者 密碼 uid gid 說明 家目錄 使用者使用的shell etc shadow 使用者認證資訊 組名稱 組密碼 組id 附加組成員 etc gs...

Linux 新增使用者 ,帳號管理 ,群組管理 詳解

一 單個賬戶管理 先說說賬號的組成。每乙個帳戶都有擁有人和擁有組群兩個屬性,所以每個登陸的使用者至少有兩個id,即uid user id 和gid group id 所有使用者的id都存放在 etc passwd 中 例如 fsy x 500 500 fedora home fsy bin bash...

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

摘要 本文簡要介紹了linux帳號管理的使用者組管理。linux ubuntu10.0.4 1.新增使用者組 groupadd usage groupadd options options f,force exit successfully if the group already exists,a...