這篇文章主要介紹centos7中如何添加一個新用戶并授權(quán),文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專注于任城企業(yè)網(wǎng)站建設(shè),響應式網(wǎng)站,商城網(wǎng)站開發(fā)。任城網(wǎng)站建設(shè)公司,為任城等地區(qū)提供建站服務。全流程定制網(wǎng)站制作,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務
創(chuàng)建新用戶
創(chuàng)建一個用戶名為:zhangbiao
[root@localhost ~]# adduser zhangbiao
為這個用戶初始化密碼,linux會判斷密碼復雜度,不過可以強行忽略:
[root@localhost ~]# passwd zhangbiao 更改用戶 zhangbiao 的密碼 。 新的 密碼: 無效的密碼: 密碼未通過字典檢查 - 過于簡單化/系統(tǒng)化 重新輸入新的 密碼: passwd:所有的身份驗證令牌已經(jīng)成功更新。
授權(quán)
個人用戶的權(quán)限只可以在本home下有完整權(quán)限,其他目錄要看別人授權(quán)。而經(jīng)常需要root用戶的權(quán)限,這時候sudo可以化身為root來操作。我記得我曾經(jīng)sudo創(chuàng)建了文件,然后發(fā)現(xiàn)自己并沒有讀寫權(quán)限,因為查看權(quán)限是root創(chuàng)建的。
新創(chuàng)建的用戶并不能使用sudo命令,需要給他添加授權(quán)。
sudo命令的授權(quán)管理是在sudoers文件里的。
可以看看sudoers:
[root@localhost ~]# sudoers bash: sudoers: 未找到命令... [root@localhost ~]# whereis sudoers sudoers: /etc/sudoers /etc/sudoers.d /usr/libexec/sudoers.so /usr/share/man/man5/sudoers.5.gz
找到這個文件位置之后再查看權(quán)限:
[root@localhost ~]# ls -l /etc/sudoers -r--r----- 1 root root 4251 9月 25 15:08 /etc/sudoers
是的,只有只讀的權(quán)限,如果想要修改的話,需要先添加w權(quán)限:
[root@localhost ~]# chmod -v u+w /etc/sudoers mode of "/etc/sudoers" changed from 0440 (r--r-----) to 0640 (rw-r-----)
然后就可以添加內(nèi)容了,在下面的一行下追加新增的用戶:
[root@localhost ~]# vim /etc/sudoers ## Allow root to run any commands anywher root ALL=(ALL) ALL zhangbiao ALL=(ALL) ALL #這個是新增的用戶
wq保存退出,這時候要記得將寫權(quán)限收回:
[root@localhost ~]# chmod -v u-w /etc/sudoers mode of "/etc/sudoers" changed from 0640 (rw-r-----) to 0440 (r--r-----)
這時候使用新用戶登錄,使用sudo:
[zhangbiao@localhost ~]$ sudo cat /etc/passwd [sudo] password for zhangbiao: We trust you have received the usual lecture from the local System Administrator. It usually boils down to these three things: #1) Respect the privacy of others. #2) Think before you type. #3) With great power comes great responsibility.
第一次使用會提示你,你已經(jīng)化身超人,身負責任。而且需要輸入密碼才可以下一步。如果不想需要輸入密碼怎么辦,將最后一個 ALL 修改成 NOPASSWD: ALL 。
以上是“centos7中如何添加一個新用戶并授權(quán)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!