初めてLinuxを使ってみました。数時間前、Bullseye Debianをインストールしたときにrootアカウントとユーザーアカウントを作成しました。どちらにもパスワードがあります。ただし、これを使用してシステムを更新しようとするたびに、sudo
常に拒否されます。またどういう意味ですかThis incident will be reported
?私は何が間違っていましたか?自分のデバイスでDebianを使用することは禁止されていますか?
luke@localhost:~$ sudo apt-get update
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.
[sudo] password for luke:
luke is not in the sudoers file. This incident will be reported.
luke@localhost:~$
答え1
いいえ、これはローカルコンピュータに関する警告です。 rootアクセス権を取得しようとしましたが、承認されたユーザーではなかったという事実は、ローカル監査ログにのみ記録されます。コンピュータの外部に転送されません。あなたは何も間違えておらず、Debianの使用は禁止されません。
sudoersファイルにlukeを追加するには、rootとしてログインし、sudoを許可するグループに「luke」を追加します。たとえば、
usermod -a -G sudo luke