1. 程式人生 > >課時3.使用者管理-大資料與人工智慧實戰L1系列課程-小象學院

課時3.使用者管理-大資料與人工智慧實戰L1系列課程-小象學院

知識要點

1.新增新組

    groupadd groupname

2.新增新使用者

    useradd username

3.設定使用者密碼

    passwd username

4.給使用者新增組

    usermod -g groupname username

5.新增新使用者同時新增組

    useradd -g groupname username

6.檢視使用者組

    groups username

7.刪除使用者

    userdel username

8.刪除組

    groupdel groupname

9.將使用者從組中刪除

    gpasswd -d groupname username

10.切換使用者

    su username