su 和 sudo 无密码


sudo 无密码

切换到root或者使用sudo 打开/etc/sudoers 添加一行:yourname ALL=(ALL) NOPASSWD: ALL

su 无密码

  1. 切换到root权限;
  2. 创建group为wheel,命令为groupadd wheel;
  3. 将用户加入wheel group中,命令为usermod -G wheel joe;
  4. 修改su的配置文件/etc/pam.d/su,增加下列项: auth required pam_wheel.so group=wheel # Uncomment this if you want wheel members to be able to # su without a password. auth sufficient pam_wheel.so trust use_uid 一定要放在第一行