溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

deian   授權(quán)用戶 sudo權(quán)限

發(fā)布時間:2020-07-14 19:14:38 來源:網(wǎng)絡(luò) 閱讀:595 作者:990487026 欄目:開發(fā)技術(shù)
ubuntu默認(rèn)用戶sudo不使用密碼

chunli@ubuntu~$ sudo vim /etc/sudoers
行尾追加一行,防止被其他策略覆蓋
chunli  ALL = NOPASSWD: ALL

打開一個終端,試試執(zhí)行sudo apt-get update




root@itsm-demo:~# apt-get install -y  sudo


root@itsm-demo:~# vim /etc/sudoers
為已經(jīng)存在的user1用戶授權(quán)
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults        env_reset
Defaults        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root    ALL=(ALL:ALL) ALL 
user1    ALL=(ALL:ALL) ALL 
# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL 
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
強(qiáng)制保存:
:w!



不需要密碼,直接切換到root

pi

chunli

#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults        env_reset
Defaults        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

pi ALL=(ALL) NOPASSWD: ALL
chunli ALL=(ALL) NOPASSWD: ALL


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI