博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Error prompt:“xxx is not in the sudoers file”----Solution
阅读量:6710 次
发布时间:2019-06-25

本文共 653 字,大约阅读时间需要 2 分钟。

//Situation

    System prompts "xxx is not in the sudoers file"(xxx equals the user name) while executing command "sudo": 

    1. sudo -i
    2. Password:
    3. xxx is not in the sudoers file. This incident will be reported.

//Analysis

    The current account must have no rights to execute "sudo".
//Solution
To fix the problem, add the current account into the file  "/etc/sudoers":
    1. Switch to supervisor:    su
    2. Open the file "sudoers" with vi editor:    vi /etc/sudoers

    3. Add the account:    press "i" to edit; find line "root    ALL=(ALL)    ALL"; new a line "xxx    ALL=(ALL)    ALL" below it; save&quit with the command "wq!".

Problem solved.

转载于:https://www.cnblogs.com/tyingk/p/3833018.html

你可能感兴趣的文章
任务与函数
查看>>
SCRUM MASTER检查单
查看>>
13.Zookeeper的java客户端API使用方法
查看>>
《大话设计模式》读书笔记-第9章 原型模式
查看>>
排序五:快速排序
查看>>
POJ - 3264——Balanced Lineup(入门线段树)
查看>>
Python中的多进程与多线程/分布式该如何使用
查看>>
C语言基础教程源码
查看>>
微信公众号
查看>>
LeetCode - 1. Two Sum
查看>>
[LeetCode]: 64: Minimum Path Sum
查看>>
vuex简介(转载)
查看>>
OA系统审批邮件业务规则整理
查看>>
erlang.mk和makefile语法剖析
查看>>
WEB新手之布尔盲注
查看>>
MySQL快捷键
查看>>
PHP使用 DOMDocument创建和解析xml文件
查看>>
全面掌握const、volatile和mutable关键字(转)
查看>>
url加时间戳避免再次请求当前路径出现的缓存问题
查看>>
读取EXCEL的简单方式
查看>>