liunx用戶與組的基礎操做

1.用戶管理
1.概念:Users and groups:
. Every process (running program) on the system runs as a particular user.
. Every file is owned by a particular user.
. Access to files and directories are restricted by user.
. The user associated with a running process determines the files and directories accessible to that process.
用戶和組:
系統上的每一個進程(運行程序)都做爲一個特定的用戶運行。
每一個文件都屬於特定的用戶。
對文件和目錄的訪問受用戶限制。
與正在運行的進程關聯的用戶肯定該進程可訪問的文件和目錄。
2.用戶的做用
1.查看當前登陸的用戶信息:打開終端輸入idliunx用戶與組的基礎操做
2.查看文件的owner: 終端輸入ll /home/ liunx用戶與組的基礎操做
3.查看運行進程的username:終端輸入ps auxliunx用戶與組的基礎操做
3.用戶組信息存儲的文件
1.用戶基本信息文件:cat /etc/passwdliunx用戶與組的基礎操做
2.用戶密碼信息文件:cat /etc/shadowliunx用戶與組的基礎操做
3.組信息文件:cat /etc/groupliunx用戶與組的基礎操做
5.用戶與組管理
1.建立用戶 未指定選項:useradd user01liunx用戶與組的基礎操做
2.建立用戶 指定選項:useradd user02 -u 1503liunx用戶與組的基礎操做
3.刪除用戶:userdel -r user02liunx用戶與組的基礎操做
4.用戶密碼:
第一種,root修改其餘密碼:passwd user01liunx用戶與組的基礎操做
第二種,修改當前登陸的密碼:passwdliunx用戶與組的基礎操做
5.其它選項管理:usermod -r /sbin/nologin user01liunx用戶與組的基礎操做ide

6.組成員管理
一.查看用戶原先信息:id user01liunx用戶與組的基礎操做
二.將用戶追加到hr組:usermode -aG hr user01liunx用戶與組的基礎操做
三.再次查看用戶信息:id user01liunx用戶與組的基礎操做
四.將用戶移除組:gpasswd -d user01 hrliunx用戶與組的基礎操做
6.用戶組3d

1.建立一個hr組groupadd heliunx用戶與組的基礎操做
2.建立組net01,並指定gid 1007:groupadd net01 -g 1007
liunx用戶與組的基礎操做
4查看:grep net01 /etc/group liunx用戶與組的基礎操做
5.分類
基本組:隨用戶建立,自動建立的同名組。
附加組:用戶加入的其餘組。rest

相關文章
相關標籤/搜索