#注意一定要把/etc/sudoers下面的权限修改回去
# 切换到root
su -
# 修改/etc/sudoers文件的权限为可读可写可执行
chmod 777 /etc/sudoers
#‘username‘为当前用户名
echo ‘username ALL=(ALL) ALL‘ >> /etc/sudoers
# 将/etc/sudoers权限还原
chmod 440 /etc/sudoers
原文地址:https://blog.51cto.com/6627243/2468927
时间: 2024-10-12 00:32:38