我第一次尝试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。
要将 luke 添加到 sudoers 文件,请以 root 身份登录并将“luke”添加到允许 sudo 的组。例如:
usermod -a -G sudo luke