Linux账户权限管理上为了防止普通用户通过su切换到root用户,需要修改/etc/pam.d/su和/etc/login.defs两个配置文件. Step1:修改 /etc/pam.d/su文件 [root@ess ~]# vi /etc/pam.d/su#%PAM-1.0auth sufficient pam_rootok.so# Uncomment the following line to implicitly trust users in the "wheel" group…
一. 普通用户su到root无需密码: 随着服务器越来越多,普通用户转到root下,去查密码表是个很繁琐的事,发现有如下方式比较方便(需要root操作) vi /etc/pam.d/su 将 auth这一列的注释号 去除 # Uncomment the following line to implicitly trust users in the "wheel" group. auth sufficient pam_wheel.so trust use…
切换用户或以其他用户身份执行命令 su: 即 switch user,命令可以切换用户身份,并且以指定用户的身份执行命令 格式: su [options...] [-] [user [args...]] 常见选项: -l --login su -l UserName 相当于 su - UserName -c, --command <command> pass a single command to the shell with -c 切换用户的方式: su UserName:非登录式切换,即不…