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-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南