sudo "……is not in the sudoers file." 怎么办?

首先切换到root身份
$su -
(和su是不同,在用命令"su"的时候只是切换到root,没有把root的环境变量传过去,还是当前用户的环境变量,

  用"su -"命令将环境变量也一起带过去,和root登录一样)

然后
$visudo

1、移动光标,到最后一行
2、按a,进入append模式
3、输入
your_user_name ALL=(ALL) ALL


你可能感兴趣的:(sudo "……is not in the sudoers file." 怎么办?)