Linux(9)--添加新用户+赋sudo权限
用戶管理
- 1. adduser
- step1:添加新用戶
- step2 : 賦予sudo權限。
- step3: 刪除用戶
- 2. useradd (建議不要使用)
1. adduser
step1:添加新用戶
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
step2 : 賦予sudo權限。
切換回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.
step3: 刪除用戶
$ 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
2. useradd (建議不要使用)
建立用戶帳號和創建用戶的起始目錄,使用權限是超級用戶.
useradd是一個linux命令,但是它提供了很多參數在用戶使用的時候根據自己的需要進行設置.
useradd這個命令創建的是普通賬號,并不能用來登錄系統。
seradd可用來建立用戶賬號。賬號建好之后,再用passwd設定賬號的密碼。使用useradd命令所建立的賬號,實際上是保存在/etc/passwd文本文件中。
總結
以上是生活随笔為你收集整理的Linux(9)--添加新用户+赋sudo权限的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: libsvm总结
- 下一篇: CSDN-Markdown编辑器使用小技