具体现象就是,用useradd新建的普通用户,使用su切换root的时候,提示:

su root
密码: 
su: 权限被拒绝

解决办法是:

usermod -G wheel admin  //将admin用户加入wheel组就可以su root了

当然,还有其他方法,可以搜一下。