su: cannot set groups: Operation not permitted
在用命令给用户授权的时候不小心执行了错误的command导致 oracle用户向root用户切换的时候报错;
错误如下
$ su - root
su: cannot set groups: Operation not permitted
查找资料找到解决方法
# chown -R root:root /bin/su
# chmod a+s /bin/su
# ll /bin/su
-rwsrwsrwx 1 root root 23960 Mar 1 2010 /bin/su
评论已关闭