FreeBSD中,可以使用su命令成为root用户,但FreeBSD对执行su命令的用户进行了更严格的限制,能使用su命令的用户必须属于wheel组(root的基本属组,组ID为0),否则就不能通过 这个命令成为root。(当然该用户还得知道root口令)因此需要编辑组设置文件/etc/group,将需要超级用户权力的管理成员加入到wheel组中。三个方法:
1. pw groupmod wheel -m <username> #注意参数是m,-M的话就是替换组内user了;
2. pw usermod <username> -g wheel
3. 直接修改/etc/group文件,把相应的用户加到wheell组就可以:
wheel:*:0:root,username