使用用sudo时提示"### is not in the sudoers file. This incident will be reported.

 其中### 是你的用户名,也就是你的用户名没有权限使用sudo,怎么办呢?

解决方法很简单:我们只要修改一下/etc/sudoers文件就行了。


1.下面是修改方法:
    一、进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。(当然,你也可以直接用root用)

    二、添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。

    三、编辑/etc/sudoers文件。也就是输入命令"vim /etc/sudoers",输入"i"进入编辑模式,找到这一 行:"root ALL=(ALL) ALL"在起下面添加"### ALL=(ALL) ALL"

           (这里的###是你的    用户名),然后保存(就是先按一 下Esc键,然后输入":wq")退出。
   四、撤销文件的写权限。也就是输入命令"chmod u-w /etc/sudoers"。

 


2.另一种修改sudoers的方法sudo都提供了一个编辑该文件的命令:visudo来对该文件进行修改。
   强烈推荐使用该命令修改 sudoers,因为它会帮你校验文件配置是否正确,如果不正确,在保存退出时就会提示你哪段配置出错的。
  (改命令需超级用户:su -) visodo -f /etc/sudoers
3.对sudoers文件详细讲解A.首先写sudoers的缺省配置:

###########################################################
# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the sudoers man page for the details on how to write a sudoers file.
#

Defaults   env_reset
# Host alias specification

# User alias specification

# Cmnd alias specification

# Defaults specification

# User privilege specification
root    ALL=(ALL) ALL

# Uncomment to allow people in group wheel to run all commands
# %wheel        ALL=(ALL)       ALL

# Same thing without a password
# %wheel        ALL=(ALL)       NOPASSWD: ALL

# Samples
# %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom
# %users localhost=/sbin/shutdown -h now
########################################################
4、ubuntu中最简单的配置,让普通用户ubuntu具有root的所有权限 执行visudo之后,可以看见缺省只有一条配置:root    ALL=(ALL) ALL
那么你就在下边再加一条配置: ubuntu ALL=(ALL) ALL 普通用户ubuntu就能够执行root权限的所有命令。以ubuntu用户登录之后,

执行: sudo su - 然后输入ubuntu用户自己的密码,就可以切换成root用户了。

你可能感兴趣的:(File,ubuntu,user,command,vim)