Debian 10 では sudo は使用できません。

Debian 10 では sudo は使用できません。

AMDプロセッサを搭載したDell InspironにDebian 10をインストールしました。 KDEプラズマデスクトップを使用しています。私が試したとき

sudo dpkg  -i ./palemoon_28.6.1+repack-2_amd64.deb

わかりました。

[sudo] password for peter: 
peter is not in the sudoers file.  This incident will be reported.

私はrootとしてログインして入りました。

/usr/sbin/adduser peter

このリターン

adduser: ユーザー "peter" が既に存在します。

それからrootとして次を試しました。

chmod 0440 /etc/sudoers

sudoを試しても、Peterのアカウントにまだ

peter is not in the sudoers file.  This incident will be reported.

それからrootとして次を試しました。

sudo usermod -aG sudo,adm peter

Peterのアカウントでsudoを試しても、同じ結果が表示されます。

Peterのアカウントの新しい端末を開いても何も変わりません。

編集する

cat /etc/sudoers
root@debian:/home/peter/Downloads# 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"

# 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


root@debian:/home/peter/Downloads# id peter
uid=1000(peter) gid=1000(peter)   groups=1000(peter),4(adm),24(cdrom),25(floppy),27(sudo),29(audio),30(dip),44(video),46(plugdev),109(netdev),112(bluetooth),116(lpadmin),117(scanner)

ベストアンサー1

ルートとしてファイルを作成しました。

vi /etc/sudoers.d/peter

そして追加されました

peter    ALL=(ALL:ALL) ALL

これで、Peterのアカウントでsudoを実行できるようになりました。

おすすめ記事