Linux下sudo命令无法使用及报sudoers.d下某文件语法错误
2021/11/2 7:10:31
本文主要是介绍Linux下sudo命令无法使用及报sudoers.d下某文件语法错误,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Linux下sudo命令无法使用及报sudoers.d下某文件语法错误
在这种情况下 我们是往往进入不到root模式下的
问题来源:添加用户的时候重复添加等导致。
sudoers文件错误
-
pkexec visudo
命令打开sudoers文件 -
修改该文件(此处展示一份无错配置)
# # This file MUST be edited with the 'visudo' command as root. # # Please consider adding local content in /etc/sudoers.d/ instead of # directly modifying this file. # # See the man page for details on how to write a sudoers file. # Defaults env_reset Defaults mail_badpass Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" # Host alias specification # User alias specification # Cmnd alias specification # User privilege specification root ALL=(ALL:ALL) ALL stack ALL=(ALL) NOPASSWD: ALL #dengschoo ALL=(ALL:ALL) ALL # Members of the admin group may gain root privileges %admin ALL=(ALL) ALL # Allow members of group sudo to execute any command %sudo ALL=(ALL:ALL) ALL # See sudoers(5) for more information on "#include" directives: #includedir /etc/sudoers.d
-
ESC: Ctrl + X
保存退出(可能要按两次 多看提示) -
再尝试sudo命令等 检查是否还有其它问题
sudoers.d目录下某个文件报错
这种情况下sudoers文件是没有问题的 就需要先把
sudoers.d
目录从sudoers
文件中移除
# # This file MUST be edited with the 'visudo' command as root. # # Please consider adding local content in /etc/sudoers.d/ instead of # directly modifying this file. # # See the man page for details on how to write a sudoers file. # Defaults env_reset Defaults mail_badpass Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" # Host alias specification # User alias specification # Cmnd alias specification # User privilege specification root ALL=(ALL:ALL) ALL stack ALL=(ALL) NOPASSWD: ALL #dengschoo ALL=(ALL:ALL) ALL # Members of the admin group may gain root privileges %admin ALL=(ALL) ALL # Allow members of group sudo to execute any command %sudo ALL=(ALL:ALL) ALL # See sudoers(5) for more information on "#include" directives: #就是这句 包含了该目录下的其他用户的权限 把它注释 #includedir /etc/sudoers.d
#includedir /etc/sudoers.d
=> ##includedir /etc/sudoers.d
然后就可以正常使用sudo命令了 就可以切换到root用户 然后删除或者修改出问题的文件了。
修改完成后别忘记重新 把刚才的注释改回来 为了不影响以后其它操作。
完全删除用户
userdel -r username
find / -name "*haha*"
查看是否还有与该用户相关的文件
这篇关于Linux下sudo命令无法使用及报sudoers.d下某文件语法错误的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23linux 系统宝塔查看网站访问的命令是什么?-icode9专业技术文章分享
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南