问题描述
从官方镜像安装的 Debian 9 (Stretch)比较纯净,但因此需要自己安装、配置许多常用的 Linux 应用,这里就需要 sudo (super user do)临时获取 root 权限。
但 Debian 默认没有给新用户 sudoer 权限,因此在使用 sudo 时会报错:
$ sudo apt-get update & apt-get upgrade
[ sudo ] password for ███:
███ is not in the sudoers file. This incident will be reported.
(注:███是当前用户名)
解决方法一:切换到 root user
比较简单粗暴。“管他是需要啥权限,我是 root 我怕谁?”
$ su
Password:
# apt-get update & apt-get upgrade
...
只要知道 root user 的密码,权限都不是事儿,甚至也不需要 sudo。
不过提醒一下,为了防止手滑,最好在操作完成后退出 root user,不然手抖在敏感部位输个类似 rm -rf *
这种的操作真是