博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
因修改/etc/sudoers权限导致sudo和su不能使用的解决方法
阅读量:6801 次
发布时间:2019-06-26

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

系统环境:ubuntu 12.04

状况:

  因为修改了/etc/sudoers以及相关权限,导致sudo无法使用,恰好Ubuntu的root密码没有设置。

  错误如下:

  ~$ sudo  sudo: >>> /etc/sudoers:syntax error 在行 21 附近<<<  sudo: /etc/sudoers 中第 21 行附近有解析错误  sudo: 没有找到有效的 sudoers 资源,退出  sudo: 无法初始化策略插件

  于是,只能进去单用户模式(拥有root权力)去修改,在Ubuntu下,开机时长按shift出现各种模式,选择第二个recovery mode,按e进去编辑。

解决方法:

1、重启ubuntu,启动时按Esc或Shift键,可以看到引导选项;

2、在引导选项中选择Recovery模式的那一项来引导;

3、进入Recovery Menu页面,选择root,也就是进入试用root用户进行系统恢复,在这里可以执行超级用户的权限的操作,回车后可以看到熟悉的 root@user ~# 命令提示符;

4、设置或者撤销/etc/sudoers文件的权限,也可以将该文件改回到发生错误之前的状态。

chmod 666 /dev/null    mount -o remount rw /    vi /etc/sudoers     恢复本文件内容并存盘

5、退出Recovery模式,重新启动ubuntu。

 

  PS:当然也可以用ubuntu光盘引导系统,然后mount相应的磁盘,然后修改/etc/sudoers文件,进入系统,就可以正常启动了(linux使用熟练的话不妨一试)。

 

# /etc/sudoers # # This file MUST be edited with the 'visudo' command as root. # # See the man page for details on how to write a sudoers file. #  Defaults env_reset  # Host alias specification  # User alias specification  # Cmnd alias specification  # User privilege specification root ALL=(ALL) ALL  # Allow members of group sudo to execute any command after they have # provided their password # (Note that later entries override this, so you might need to move # it further down) %sudo ALL=(ALL) ALL # #includedir /etc/sudoers.d  # Members of the admin group may gain root privileges %admin ALL=(ALL) ALL

 

转载于:https://www.cnblogs.com/davidsky/p/3175655.html

你可能感兴趣的文章
[matlab] 18.图与网络 (转载)
查看>>
小初高试卷生成程序—代码优缺点
查看>>
Android中给TextView设置粗体和下划线
查看>>
获取网页内容区域各种高/宽汇总
查看>>
DS博客作业01—日期抽象数据类型设计与实现
查看>>
【BFS】HDU1429 - 胜利大逃亡(续)
查看>>
linux下mysql忘记root密码的解决方案
查看>>
世界历史教科书-九年级上册.pdf
查看>>
LDAP Authentication for openNebula3.2
查看>>
SRS服务器搭建,ffmpeg 本地推流,srs从本地拉流
查看>>
C++ STL 学习笔记__(6)优先级队列priority_queue基本操作
查看>>
byte_of_python中的备份脚本
查看>>
今日小结 4.16
查看>>
05 配置优化器
查看>>
输入的整数反方向输出
查看>>
[ Nowcoder Contest 167 #C ] 部分和
查看>>
MFC 中CFileDialog的用法
查看>>
关于SVM一篇比较全介绍的博文
查看>>
English - because of,due to ,thanks to ,owing to ,as a result of ,on account of解析
查看>>
全球免费开放的电子图书馆
查看>>