Mac修改/etc/sudoers出现问题解决办法

2019-10-27 11:05:48

使用sudo出现parse error in /etc/sudoers near line 56,出现这样都问题,是我们修改sudroers造成都,然后又要用sudo修改,这样就进入了恶性循环,我们需要用root账户来修改/etc/sudoers

参考地址  解决Mac下修改/etc/sudoers文件的问题


解决Mac下修改/etc/sudoers文件的问题


花了好几个小时,才把这个bug解决了,当时不小心修改了这个文件,结果sudo 这个命令用不了,真是着急,要知道这不是ubuntu,我看网上的教程大部分都是ubuntu。就是切换不了root用户,而且sudo不了,真的很烦,网上尝试用su root 结果密码不正确,下面这个方法可以切换到root.


1.系统偏好设置-用户与群组


2.如下图


3.如下图



4.OK,好了,现在登陆终端,用su root 命令可以切换到root了,还好我有之前备份文件的习惯


5. 然后把文件改为 chmod 440 /etc/sudoers ,就可以得到之前的文件了

6. exit,就可以正常使用sudo 命令了。


  • 2017-11-10 00:06:15

    CORS: credentials mode is 'include'

    XMLHttpRequest cannot load http://localhost/Foo.API/token. The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'. Origin 'http://localhost:5000' is therefore not allowed access. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.

  • 2017-11-19 00:17:51

    Java如何获取Date的“昨天”与“明天”示例代码

    最近在做项目的时候用到Date和Calendar比较多,而且用到的方式也比较全,突然想到一个问题,Java如何获取Date的"昨天"与"明天",也就是前一天和后一天呢?思考后写出了方法,想着万一以后用到,就总结出来,也方便有需要的朋友们参考借鉴,下面来一起看看吧。