Linux 基本命令(四)
阿新 • • 發佈:2018-11-03
1、使用者和使用者組
/etc/passwd 儲存系統使用者的一些基本資訊
使用者名稱:x:UID:GID
/etc/group 儲存系統使用者組的資訊
2、useradd 增加使用者
--建立一個使用者以後,系統預設會建立一個與使用者名稱同名的使用者組
--建立一個使用者後,系統會在/home下建立一個同名家目錄,~ 表示家目錄
[[email protected] dalianmao]# useradd user01
[[email protected] dalianmao]# cat /etc/passwd|grep 'user01'
user01:x:502:502::/home/user01:/bin/bash
3、userdel 刪除使用者 su - root 切換使用者
[[email protected] ~]$ su - root
Password:
[ [email protected] ~]# userdel lanpishu
[[email protected] ~]# id lanpishu
id: lanpishu: No such user
4、groupadd 增加使用者組 groupdel 刪除使用者組
[[email protected] ~]# groupadd dashabi
[[email protected] ~]# cat /etc/group|grep 'dashabi'
dashabi:x:504:
[[email protected] ~]# groupdel dashabi
[[email protected] ~]# cat /etc/group|grep 'dashabi'
[[email protected] ~]#