Linux 9 新增新使用者 賦sudo許可權

2021-10-24 08:16:14 字數 1685 閱讀 7931

2. useradd (建議不要使用)

sudo adduser username

按照提示輸入新賬戶密碼就可以(其他字段可以選擇填)

adding user 『cyy2』 …

adding new group 『cyy2』 (1001) …

adding new user 『cyy2』 (1001) with group 『cyy2』 …

creating home directory 『/home/cyy2』 …

copying files from `/etc/skel』 …

enter new unix password: # 輸入密碼

retype new unix password: # 確認密碼

passwd: password updated successfully

changing the user information for cyy2

enter the new value, or press enter for the default

full name :

room number :

work phone :

home phone :

other :

is the information correct? [y/n] y

切換回root使用者,執行visudo命令。

visudo

在開啟的檔案(/etc/sudoers) 裡的 「root all=(all:all)all」 這一行下面加入以下內容,並儲存退出

cyy2 all=(all:all) all

新建的使用者沒有sudo許可權,執行sudo 命令會輸出如下資訊

$ sudo python

[sudo] password for cyy2:

cyy2 is not in the sudoers file. this incident will be reported.

$ sudo deluser cyy2

removing user `cyy2』 …

warning: group 『cyy2』 has no more members.

done.

一定要保證待刪除的使用者已經退出了(exit/ctrl+d),並處於root使用者下,否則會報錯:

removing user 『cyy2』 …

warning: group 『cyy2』 has no more members.

userdel: user cyy2 is currently used by process 25868

建立使用者帳號和建立使用者的起始目錄,使用許可權是超級使用者.

useradd是乙個linux命令,但是它提供了很多引數在使用者使用的時候根據自己的需要進行設定.

useradd這個命令建立的是普通賬號,並不能用來登入系統。

seradd可用來建立使用者賬號。賬號建好之後,再用passwd設定賬號的密碼。使用useradd命令所建立的賬號,實際上是儲存在/etc/passwd文字檔案中。

linux新增新使用者

adduser 會有提示,一步一步引導新使用者建立的整個過程,推薦使用 例如 adduser hou useradd 使用本命令建立的使用者沒有主目錄 userdel 刪除使用者 給新使用者hou新增密碼 passwd hou 則提示輸入密碼 系統安裝過程中建立的第乙個使用者屬於admin使用者組,...

ubuntu新增新使用者

sudo adduser username其中username是你要建立的使用者的名字,然後設定密碼還有相關資訊就可以了 用adduser建立後的新使用者是不能使用sudo的,因為還沒有賦予相關root許可權,執行以下 賦予許可權 sudo usermod a g adm username sudo...

gerrit新增新使用者

預設gerrit的web服務埠為8080,通過apache的反向 就可以使用標準的80 http 來訪問gerrit的web介面,在apache的配置檔案httpd.conf新增如下反向 和http認證設定 proxyrequests off proxyvia off proxypreserveho...