Linux精講——usermod命令

flyingfishzxf發表於2016-02-28

作用:修改使用者屬性

常用選項:

usermod -u uid username             # 更改使用者uid
usermod -g gid username             # 更改使用者gid,此gid必須存在
usermod -G gid group1, group2, ...  # 為使用者增加擴充套件組,此gid必須存在
usermod -G '' username              # 刪除使用者擴充套件組
usermod -d homedir username         # 更改使用者家目錄
usermod -s shell username           # 更改使用者shell直譯器
usermod -L username                 # 鎖定使用者密碼
usermod -U username                 # 解鎖使用者密碼

相關文章