Linux Mint 不要求輸入密碼

Linux Mint 不要求輸入密碼

通常,如果我嘗試啟動程式或執行需要 su 權限的命令(不在終端機中),則會出現一個窗口,要求輸入密碼。

但是,該視窗停止顯示,因此每當我嘗試啟動需要 su 權限的程式(例如 GParted)或執行諸如在資料夾中選擇「以根身份開啟」之類的命令時,就沒有發生任何事情。我必須sudo gparted在終端機中輸入類似的內容才能正確啟動程式。

我該如何解決這個問題?

的輸出sudo cat /etc/sudoers

#
# 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:/snap/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

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

# Members of the admin group may gain root privileges
%admin 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

相關內容