# Sudo 授权普通账户 首先以 root 身份登陆系统。 ## 检查 /bin/sudo 是否有 s 位权限 ```bash $ ll /bin/sudo -rwsr-xr-x 1 root root ``` 如果不存在则添加上: ```bash chmod +s /bin/sudo ``` ## 编辑 /etc/sudoers 文件 先增加写权限: ```bash chmod +w /etc/sudoers ``` 之后编辑该文件,在: ```ini root ALL=(ALL) ALL ``` 这行下面增加一行,格式为: ```ini ALL=(ALL) ALL ``` 保存退出后关闭写权限: ```bash chmod -w /etc/sudoers ```